0

やっかいなことになります-単純なXML要素があり、「_Code」属性を抽出したいだけです。どうすればいいですか?

<?php

$responseCode = "<STATUS _Condition='FAILURE' _Code='0705' _Description='Search failed subject not found' />";
$xml = simplexml_load_string($responseCode);

print_r($xml);

$code = $xml=>@attributes=>_Code; // Parse error
$code = $xml['@attributes']['_Code']; // Returns blank
echo "CODE = ".(string)$code; 

?>

コード=

http://php.net/manual/en/function.simplexml-load-string.php

4

1 に答える 1

1

SimpleXMLElement::attributes()を使用する

$attrs = $xml->attributes();
$code = $attrs['_Code'];
于 2012-04-25T18:04:44.850 に答える