ASong2U_Web/wp-content/plugins/html-compress/lib/html-compress/htmlCompress.class.php
2012-08-07 15:59:09 +00:00

29 lines
570 B
PHP

<?php
include_once 'baseCompress.class.php';
/**
* @Pacage karrikaslib
* @Subpacage compress
*/
/**
* Htmlan ahal den modu guztietan murriztu zentzua galdu gabe.
*/
class htmlCompress extends baseCompress
{
static public function compress( $html )
{
$html = self::delComment( $html );
$html = self::delTab( $html );
$html = self::delNL( $html );
$html = self::delSpace( $html );
return $html;
}
static public function delComment( $html )
{
// iruzkinak kendu.
$html = preg_replace('/<!(?<comment>--).*?-->/si', '', $html);
return $html;
}
}