Files
luos/thirdparty/html2ps_pdf/xhtml.comments.inc.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

9 lines
240 B
PHP

<?php
// $Header: /cvsroot/html2ps/xhtml.comments.inc.php,v 1.2 2005/04/27 16:27:46 Konstantin Exp $
function remove_comments(&$html) {
$html = preg_replace("#<!--.*?-->#is","",$html);
$html = preg_replace("#<!.*?>#is","",$html);
}
?>