私はAPIリンクを持っています。このリンクを呼び出すと、そのリンクは出力xmlデータになります。
出力は
<note>
<something a="this is a" b="this is b" c="this is c">
<something a="this is a1" b="this is b1" c="this is c1">
<something a="this is a2" b="this is b2" c="this is c2">
<something a="this is a3" b="this is b3" c="this is c3">
</note>
何かの属性を取得したいのですが、どうすればphpで書けるのでしょうか。私はphpの初心者です。上級者の友人に感謝します。
次のように書きたいと思います。私はこのphpコードが何か間違っていることを知っています.正しく書く方法.
foreach($xml->something[0]->attributes() as $a => $b)
{
echo $a,'="',$b,"\"</br>";
}
?>