Re: DOMDocument and html doctype

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Saturday 14 May 2005 16:25, Brian V Bonini wrote:
> <?php
>
> $html = <<<EOS
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
> <html><body>Test<br></body></html>
> EOS; Â
>
> $pattern = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
> Transitional//EN">';
>
> $doc = new DOMDocument();
> $doc->loadHTML($html);
> preg_match($pattern, $doc->saveHTML(), $matches);
> echo '&lt;' . $matches[0] . '&gt;';
>
> ?>

Well, that ist a very crazy idea...

If Claudio knows the doctype allready, he not needs to access this doc type 
string. A preg_match is the wrong function at this place or will you write a 
switch/case block that knows every doctype definition?

This only is usefull to see if the string exists or not.

Regards
-- 
Johannes Findeisen

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux