On Tue, Oct 18, 2011 at 16:36, QI.VOLMAR QI <[email protected]> wrote: > Como faço C14N com o PHP antes da versão 5.2? > > How I can make C14N with php before version 5.2?
It's in PHP 5.1.0 and newer. Try this:
<?php$dom = new DOMDocument;$dom->loadHTMLFile($your_filename);echo
$dom->documentElement->C14N();?>
--
</Daniel P. Brown>
Network Infrastructure Manager
http://www.php.net/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

