--TEST-- marc_xml_006: test getFields() in XML --SKIPIF-- <?php include('skipif.inc'); ?> --FILE-- <?php $dir = dirname(__FILE__); require 'File/MARCXML.php'; // Read MARC records from a stream (a file, in this case) $marc_source = new File_MARCXML($dir . '/' . 'sandburg.xml'); // Retrieve the first MARC record from the source $marc_record = $marc_source->next(); // Retrieve a personal name field from the record $names = $marc_record->getFields('100'); foreach ($names as $name_field) { // Now print the $a subfield switch ($name_field->getIndicator(1)) { case 0: print "Forename: "; break; case 1: print "Surname: "; break; case 2: print "Family name: "; break; } $name = $name_field->getSubfields('a'); if (count($name) == 1) { print $name[0]->getData() . "\n"; } else { print "Error -- \$a subfield appears more than once in this field!"; } } // Retrieve all subject and genre fields // Series statement fields start with a 6 (PCRE) $subjects = $marc_record->getFields('^6', true); // Iterate through all of the returned subject fields foreach ($subjects as $field) { // print with File_MARC_Field_Data's magic __toString() method print "$field\n"; } ?> --EXPECT-- Surname: Sandburg, Carl, 650 0 _aArithmetic _xJuvenile poetry. 650 0 _aChildren's poetry, American. 650 1 _aArithmetic _xPoetry. 650 1 _aAmerican poetry. 650 1 _aVisual perception.
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
bad_example.mrc | File | 1.81 KB | 0644 |
|
bad_example.xml | File | 7.11 KB | 0644 |
|
bigarchive.xml | File | 3.43 KB | 0644 |
|
camel.mrc | File | 6.83 KB | 0644 |
|
example.mrc | File | 1.81 KB | 0644 |
|
marc_001.phpt | File | 2.43 KB | 0644 |
|
marc_002.phpt | File | 4.58 KB | 0644 |
|
marc_003.phpt | File | 1.33 KB | 0644 |
|
marc_004.phpt | File | 9.33 KB | 0644 |
|
marc_005.phpt | File | 3.4 KB | 0644 |
|
marc_006.phpt | File | 1.27 KB | 0644 |
|
marc_007.phpt | File | 1.16 KB | 0644 |
|
marc_008.phpt | File | 461 B | 0644 |
|
marc_009.phpt | File | 1.49 KB | 0644 |
|
marc_010.phpt | File | 4.58 KB | 0644 |
|
marc_011.phpt | File | 2.67 KB | 0644 |
|
marc_012.phpt | File | 1.73 KB | 0644 |
|
marc_013.phpt | File | 8.31 KB | 0644 |
|
marc_014.phpt | File | 2.98 KB | 0644 |
|
marc_015.phpt | File | 4.75 KB | 0644 |
|
marc_016.phpt | File | 12.35 KB | 0644 |
|
marc_017.phpt | File | 4.05 KB | 0644 |
|
marc_018.phpt | File | 3.09 KB | 0644 |
|
marc_019.phpt | File | 4.02 KB | 0644 |
|
marc_16783.phpt | File | 2.42 KB | 0644 |
|
marc_field_001.phpt | File | 878 B | 0644 |
|
marc_field_002.phpt | File | 542 B | 0644 |
|
marc_field_003.phpt | File | 1.47 KB | 0644 |
|
marc_field_004.phpt | File | 920 B | 0644 |
|
marc_lint_001.phpt | File | 4.45 KB | 0644 |
|
marc_lint_002.phpt | File | 2.31 KB | 0644 |
|
marc_lint_003.phpt | File | 2.74 KB | 0644 |
|
marc_lint_004.phpt | File | 5.02 KB | 0644 |
|
marc_lint_005.phpt | File | 2.64 KB | 0644 |
|
marc_record_001.phpt | File | 544 B | 0644 |
|
marc_subfield_001.phpt | File | 716 B | 0644 |
|
marc_subfield_002.phpt | File | 1.03 KB | 0644 |
|
marc_xml_001.phpt | File | 7.45 KB | 0644 |
|
marc_xml_002.phpt | File | 3.52 KB | 0644 |
|
marc_xml_003.phpt | File | 1.45 KB | 0644 |
|
marc_xml_004.phpt | File | 2.75 KB | 0644 |
|
marc_xml_005.phpt | File | 1.47 KB | 0644 |
|
marc_xml_006.phpt | File | 1.41 KB | 0644 |
|
marc_xml_007.phpt | File | 972 B | 0644 |
|
marc_xml_008.phpt | File | 12.36 KB | 0644 |
|
marc_xml_009.phpt | File | 1.07 KB | 0644 |
|
marc_xml_16642.phpt | File | 916 B | 0644 |
|
marc_xml_rsinger.phpt | File | 2.44 KB | 0644 |
|
music.mrc | File | 4.17 KB | 0644 |
|
music.xml | File | 11.38 KB | 0644 |
|
onerecord.xml | File | 3.23 KB | 0644 |
|
sandburg.mrc | File | 1.12 KB | 0644 |
|
sandburg.xml | File | 3.26 KB | 0644 |
|
skipif.inc | File | 396 B | 0644 |
|
xmlescape.mrc | File | 728 B | 0644 |
|