The following solution finds the datafield with tag="100" and get the value of subfield with code="a". Now I realised that I also need to check if a subfield with code="4" exist and if so check if the value is xyz and only fetch the subfield code="a" value if that condition is true. How can I change the code in order to do that?
XML:
<datafield tag="100">
<subfield code="a">value
</subfield>
<subfield code="4">xyz
</subfield>
</datafield>
code
if($datafield['tag']=='100'){
$datafield->registerXPathNamespace('foo', 'http://www.loc.gov/MARC21/slim');
foreach( $datafield->xpath('foo:subfield') as $sf ) {
if($sf['code']=='a'){
$auth=func($sf);
}
}
}