We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

remysharp on 08/01/07


Tagged

php textmate DOM parser


Versions (?)


Loose php dom parsing


Published in: PHP 


  1. $dom = new DOMDocument();
  2. $dom->preserveWhiteSpace = false;
  3. $dom->strictErrorChecking = false;
  4. $dom->loadHTMLFile($url);

Report this snippet 

You need to login to post a comment.