Ben flaş xml veri göndermek için SimpleXML de gerçekten ve AMFPHP kullanıyorum.
Ben bu xml Say:
<?xml version="1.0" encoding="ISO-8859-1"?>
<people>
<person>
<name>bob</name>
</person>
</people>
And I load it in with simplexml_load_file()
.
When I do this:
$name = $xml->person[0]->name;
return $name;
it returns "<name>bob</name>"
.
Why is it returning the tags? When I do this with just php and not AMFPHP it works fine.