Tagged Questions
3
votes
2answers
69 views
read xml file from end to start in php
i want to read xml file from end to start suppose my xml like that :
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't ...
0
votes
0answers
18 views
Which is better for parsing XML string in PHP? simplexml_load_string OR any xml_to_array converter function?
I want to parse large data from xml to array in PHP.
I have two option,
1st is using simplexml_load_string which will give me an object, from which I can make my desired object.
2nd is using any ...
0
votes
3answers
2k views
Parsing XML With Single Quotes?
I am currently running into a problem where an element is coming back from my xml file with a single quote in it. This is causing xml_parse to break it up into multiple chunks, example: Get Wired, ...