class USMARC in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/marcParse/php-marc.php \USMARC
- 6 marcParse/php-marc.php \USMARC
- 7.2 modules/marcParse/php-marc.php \USMARC
USMARC Class Extension class to File class, which allows passing of raw MARC string instead of filename.
Hierarchy
Expanded class hierarchy of USMARC
File
- modules/
marcParse/ php-marc.php, line 380 - @package PHP-MARC
View source
class USMARC extends File {
/**
* Read raw MARC string for decoding.
*
* @param string Raw MARC
*/
public function __construct($string) {
$this->raw[] = $string;
$this->pointer = 0;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
File:: |
public | property | Current position in the array of records. | |
File:: |
public | property | Array containing raw records. | |
File:: |
public | property | Array of warnings. | |
File:: |
public | function | Decode a given raw MARC record. | |
File:: |
public | function | Return next Record-object. | |
File:: |
public | function | Get the number of records available in this Record. | |
File:: |
public | function | Get warning(s) | |
File:: |
public | function | Croaking function. | |
File:: |
public | function | Return the next raw MARC record. | |
File:: |
public | function | Fuction to issue warnings. | |
USMARC:: |
public | function |
Read raw MARC string for decoding. Overrides File:: |