Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

UPDATE 2: http://htmlpurifier.org/phorum/read.php?3,5088,5113 Author has already identified the problem.

UPDATE: Issue appears to be exclusive to version 4.2.0. I have downgraded to 4.1.0 and it works. Thank you for all your help. Author of package notified.

I am scraping some pages like:

http://form.horseracing.betfair.com/horse-racing/010108/Catterick_Bridge-GB-Cat/1215

According to W3C validation it is valid XHTML Strict.

I am then using http://htmlpurifier.org/ to purify the HTML before loading into a DOMDocument. However it is only returning a single line of content.

Output:

12:15 Catterick Bridge - Tuesday 1st January 2008 - Timeform | Betfair

Code:

echo $content; # all good
$purifier = new \HTMLPurifier();
$content = $purifier->purify($content);
echo $content; # all bad

BTW it works for data sourced from another site, just as you say leaves the title for all pages from this domain.

Related Links

share|improve this question
4  
Make sure you don't reveal to us which line! It would take away all the fun of guessing. – Pekka 웃 Nov 19 '10 at 0:23
@Pekka, :) added – user137621 Nov 19 '10 at 0:28
Strange, that seems to be the title. Can you show the code you are using? (The purifier call and settings) – Pekka 웃 Nov 19 '10 at 0:29
@Pekka, done, standard call, working fine for other content, just not any from this domain. – user137621 Nov 19 '10 at 0:34
1  
ajreal: If this is indeed a regression from 4.1.0 to 4.2.0 that's useful information. – Edward Z. Yang Nov 21 '10 at 10:48
show 9 more comments

1 Answer

up vote 0 down vote accepted

You should not need the HTML purifier. The DOMDocument class will take care of everything for you. However, it will trigger a warning on invalid html, so just do this:

$doc = new DOMDocument();
@$doc->loadHTML($content);

Then the error will not be triggered, and you can do what you wish with the HTML.

If you are scraping links, I would recommend that you use SimpleXMLElement::xpath(); That is much easier than working with the DOMDocument. Another example on that:

$xml = new SimpleXMLElement($content);
$result = $xml->xpath('a/@href');

print_r($result);

You can get much more complex xpaths that allow you to specifiy class names, ids, and other attributes. This is much more powerful than DOMDocument.

share|improve this answer
yeah ocd was having me purify anything third party :) i am now just using pure domdocument and domxpath - which is perfect for my needs. in fact a bug in my own code led me to purification before loading into dom (that is since solved, and as such so is my need to purify). – user137621 Nov 21 '10 at 13:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.