Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
<?php
|
|
|
2 |
// $Header: /cvsroot/html2ps/xhtml.comments.inc.php,v 1.2 2005/04/27 16:27:46 Konstantin Exp $
|
|
|
3 |
|
|
|
4 |
function remove_comments(&$html) {
|
|
|
5 |
$html = preg_replace("#<!--.*?-->#is","",$html);
|
|
|
6 |
$html = preg_replace("#<!.*?>#is","",$html);
|
|
|
7 |
}
|
|
|
8 |
|
|
|
9 |
?>
|