Jump to content

Which way is more efficient to parse xml


devWhiz

Recommended Posts

this

 



xml_parse_into_struct($iP=xml_parser_create(), curl_exec($ch), $bR, $bJ);xml_parser_free($iP);
echo "::: ".strip_tags(str_replace("<br>","\n",$bR[$bJ['MESSAGE'][0]]['value']))."\n";

 

or...

 


$xml = simplexml_load_string(curl_exec($ch));
foreach($xml->xml as $message){
echo strip_tags($message->message)."\n";}

 

Just want to know which of these two would execute faster and if there was a better way that would be faster than both of these options? Thanks

Link to comment
Share on other sites

For large XML files you'll find SimpleXML inefficient, so I swear by XMLReader mostly. That said, it shows that it depends on the job which XML parser is best. DOMDocument would be a good choice when you want to parse "invalid" XML files due to it's HTML parsing abilities (not tested).

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.