PHPを使用してアプリケーションを開発しています。いくつかのサンプルコードはここにあります。
$url = "http://localhost:8080/?Xml";
$xml = simplexml_load_file($url);
foreach($xml->result->doc as $doc){
echo "<pre>".print_r($doc)."</pre>";
}
それらのアイテムの1つは私が要求するこのように見えます。
SimpleXMLElement Object ( [@attributes] => Array ( [score] => 4.112774 [pos] => 0 ) [field] => Array ( [0] => http://www.w3schools.com/htmldom/dom_examples.asp [1] => text/html [2] => Free HTML XHTML CSS JavaScript jQuery XML DOM XSL XSLT RSS AJAX ASP .NET PHP SQL tutorials, references, examples for web building. [3] => html,css,tutorial,html5,dhtml,css3,xsl,xslt,xhtml,javascript [4] => www.w3schools.com [5] => en ) [snippet] => Array ( [0] => DOM Examples [1] => DOM HOME DOM Intro DOM Nodes DOM Node Tree DOM Methods DOM Node Access DOM Node Info DOM How To DOM Events DOM Summary DOM... ) )
配列アイテムにアクセスする方法を知りたいですか?