function File::next in Bibliography Module 6
Same name and namespace in other branches
- 6.2 modules/marcParse/php-marc.php \File::next()
- 7 modules/marcParse/php-marc.php \File::next()
- 7.2 modules/marcParse/php-marc.php \File::next()
* Return next Record-object * * Decode the next raw MARC record and return *
Return value
File
- marcParse/
php-marc.php, line 217
Class
Code
function next() {
if ($raw = $this
->_next()) {
return $this
->decode($raw);
}
else {
return FALSE;
}
}