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