japanitrat
japanitrat

Reputation:

PHP library for converting HTML4 to XHTML?

I need to convert HTML4 input to valid XHTML (strict) in PHP5 for further processing (SAX for instance). Any suggestions?

Upvotes: 4

Views: 1338

Answers (1)

Chad Birch
Chad Birch

Reputation: 74558

The PHP Tidy extension should be able to do the job.

Here's a good article about it: Tidying up HTML Code with Tidy PHP Extension.

Upvotes: 11

Related Questions