がどのように私は次のイベントPHP XML simple_loadのID
<event id="100990">
<title>myTitle</title>
</event>
から "ID" を解析しない私はこのようなタイトルを解析:
$xml->event[0]->title
がどのように私は次のイベントPHP XML simple_loadのID
<event id="100990">
<title>myTitle</title>
</event>
から "ID" を解析しない私はこのようなタイトルを解析:
$xml->event[0]->title
これはあなたが必要な正確に何である:http://www.php.net/manual/en/simplexmlelement.attributes.php
あなたはaccess attributesのように連想配列の要素にアクセスするのと同じように:
$xml_node['id'] // The value of the attribute `id` of the node `$xml_node`
戻り値はオブジェクト(__toString
メソッド)であるため、戻り値の型キャストが必要な場合があります。