Re: [PHP] Good HTML parser needed
[email protected] (Robert Cummings)
| Newsgroups | php.general |
|---|---|
| Organization | InterJinn |
| Message-ID | <1210656421.21547.11.camel@blobule> |
On Tue, 2008-05-13 at 12:28 +0800, Shelley wrote:
> Maybe I didn't use that tidy correctly.
> I don't want html, head, body things. Just parsed string.
So strip them...
<?php
// ...
tidy_parse_string( $html );
tidy_clean_repair();
$html = tidy_get_output();
$html = preg_replace( '#^.*<body>#Uis', '', $html )
$html = preg_replace( '#</body>#Uis', '', $html )
//...
?>
Cheers,
Rob.
--
http://www.interjinn.com
Application and Templating Framework for PHP