php: parsing xml

by prettyscripts on 2007-12-14 01:11:22 • Leave a comment »

phpxml

in php5, parsing and processing xml can be easily done with SimpleXML extension. to parse xml file: $obj = simplexml_load_file($file); to parse xml string: $obj = simplexml_load_string($string); example <data> <tag>value 1<t… more »

Tags: php, xml