PHP XML Parsing

前端 未结 5 988
心在旅途
心在旅途 2020-12-14 04:55

Which is the best way to parse an XML file in PHP ?

First
Using the DOM object

//code
$dom = new DOMDocument();
$dom->load(         


        
5条回答
  •  悲&欢浪女
    2020-12-14 05:35

    I prefer simplexml_load_string for ease of use. Processing speed may well depend on the format of the XML file if the two use different methods of parsing the file - try it out on your own files and see which is better for you.

提交回复
热议问题