asked on
$xml = simplexml_load_file('test.xml');
var_dump($xml);
\\Path\To\test.php
object(SimpleXMLElement)[1]
public 'title' => string "My Title" (length=8)
........
public 'properties ' =>
array (size=1234)
0=>
object(SimpleXMLElement)[2]
2=>
object(SimpleXMLElement)[2]
3=>
object(SimpleXMLElement)[4]
<?xml version="1.0" encoding="UTF-8" ?>
<resultset xmlns="http://example.com/" xmlns:ns2="http://example.com/path/to/file" xmlns:ns2="http://example.com/path/to/other/file">
<title>The Searchers</title>
<date>1956</date>
<properties >
<ns2:name>overview</ns2:name>
<ns2:value xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.</ns2:value>
</properties >
<properties >
<ns2:name>Director</ns2:name>
<ns2:value xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">John Ford</ns2:value>
</properties >
<properties >
<ns2:name>actors</ns2:name>
<ns2:value xmlns:xsi="http://example.com/XMLSchema" xsi:type="ns2:list">
<ns2:entries xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">John Wayne</ns2:entries>
<ns2:entries xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">Jeffrey Hunter</ns2:entries>
<ns2:entries xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">Vera Miles</ns2:entries>
<ns2:entries xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:type="xs:string">Natalie Wood</ns2:entries>
</ns2:value>
</properties >
<filmData>
<location>Monument Valley</location>
<imdb>https://www.imdb.com/title/tt0049730/</imdb>
<filmData>
</resultset>';