PHP の XPath がデータ構造を返さずにデータを検索し、値のみを返すようにする方法を教えてください。
$data=$xml->xpath("[email protected]");
ログイン後にコピー
上記のコードは次の内容を出力します
array(1) { [0 ]=> オブジェクト (SimpleXMLElement)#9 (1) { ["@attributes"]=> 配列(1) { ["msg"]=> 文字列(24) "星の王子さま" } }
データパス「@attributes
」を返さずにmsg内のコンテンツのみを返すようにするにはどうすればよいですか------解決策のアイデア------ ----- $data=$xml->xpath("[email protected]");<br /><br />$str = (string)$data[0];
ログイン後にコピー