public function File::next in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/marcParse/php-marc.php \File::next()
- 6 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
- modules/
marcParse/ php-marc.php, line 237 - @package PHP-MARC
Class
Code
public function next() {
if ($raw = $this
->_next()) {
return $this
->decode($raw);
}
else {
return FALSE;
}
}