次のコードを使用してphpで解析しようとしているxmlがあります。
$data = simplexml_load_file($file_path)
foreach ($data as $obj):
//get author, date, etc
...
// get the paths
foreach ($obj->paths as $current):
$kind = $current['kind'];
$action = $current['action'];
$path = $current->path;
しかし、何らかの理由で種類とアクションの属性を取得できません...パスは機能しますが、属性は機能しません
xml は次のようになります。
<log>
<logentry
revision="xxxx">
<author>xyz</author>
<date>my date</date>
<paths>
<path
kind="file"
action="M">/myPath/woohoo</path>
<path.... *more paths*
....more logentries
ありがとう