git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@68 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
29 lines
570 B
PHP
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;
|
|
}
|
|
} |