Jump to content

rss parsing


arandam

Recommended Posts

i also tried that, but, its giving error

but, if i use the link,  http://news.google.com/news?ned=us&topic=h&output=rss, all methods are working.

but, only with the link http://www.pharmamanufacturing.com/index.html?mode=rss, its not working.

can u have a look, it just takes 5 lines of code.

may be i am missing something

Link to comment
https://forums.phpfreaks.com/topic/219690-rss-parsing/#findComment-1138961
Share on other sites

that RSS feed isn't properly encoded, so simplexml_load_file is throwing a UTF-8 encoding error.  The errors I'm getting on that feed are either encoding related or CDATA related.

 

It seems your target feed is poorly formed.  Parse it by hand, or contact the publisher.  The apostrophe in "Genentech's" is not actually an apostrophe, that seems to be the issue.  I don't know why simplexml is failing on a CDATA field, but it is.

 

-Dan

Link to comment
https://forums.phpfreaks.com/topic/219690-rss-parsing/#findComment-1138998
Share on other sites

Use the string parsing functions to actually break it up by hand rather than trying a pre-build solution.  Preg_match_all can handle a well-formed RSS feed like this.  Or you could use strpos and substr to manually pull each tag into a variable.

 

It will be tedious, but if the XML is so weird that both XML parsing functions choke on it, it might be your only way.

 

-Dan

Link to comment
https://forums.phpfreaks.com/topic/219690-rss-parsing/#findComment-1139021
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.