Parsing XML in a string : simplexml_load_string « XML « PHP
- PHP
- XML
- simplexml_load_string
Parsing XML in a string
$channel =<<<_XML_
<channel>
<title>What's For Dinner</title>
<link>http://menu.example.com/</link>
<description>what to eat tonight.</description>
</channel>
_XML_;
$xml = simplexml_load_string($channel);
Related examples in the same category