XML parsing of large amount of data

前端 未结 4 1689
广开言路
广开言路 2021-01-23 15:54

Which is the optimal way of XML parsing(XML may be of large amount of data) in php?

4条回答
  •  伪装坚强ぢ
    2021-01-23 16:35

    If you need a way to parse XML data that is valid for PHP4 too, then you can use the XML parser, or DOM XML (which is a PHP4 only extensions); if you need a solution for PHP5, then you can use DOM, or XMLReader.

    It depends from your needs.

提交回复
热议问题