-
- /**
- @ 属性を設定・保持するクラス
- @ class cleanHtml
- @ link: bbs.it-home.org
- @ date: 2013/2/28
- */
- function reg_escape( $str )
- {
- $conversions = array( "^" => "^", "[" => " ["、"." => "."、"$" => "$"、"{" => "{"、"*" => "*"、"(" => " (", "\" => "\\"、"/" => "/"、"+" => "+"、")" => ")"、"|" => 「|」、「?」、「<」、「>」
- return strtr( $str, $conversions );
- }
-
- /**
- * 属性クラスを削除します
- * XML 要素から属性を削除します
- * @author David (semlabs.co.uk)
- * @version 0.2.1
- */
-
- class cleanHtml{
- public $str = '';
- public $allow = array();
- public $Exceptions = array();
- public $ignore = array();
-
- パブリック関数ストリップ( $str )
- {
- $this->str = $str;
-
- if( is_string( $str ) && strlen( $str ) > 0 )
- {
- $res = $this->findElements();
- if( is_string( $res ) )
- return $res;
- $nodes = $this->findAttributes( $res );
- $this->removeAttributes( $nodes );
- }
-
- return $this->str;
- }
-
- private function findElements()
- {
-
- # 属性を持つ要素の配列を作成します
- $nodes = array();
- preg_match_all( "/<([^ !/>n]+)([^>]*)>/i", $this->str, $elements );
- foreach( $elements[1] as $el_key => $element )
- {
- if( $elements[2][$el_key] )
- {
- $literal = $elements[0][$el_key];
- $element_name = $elements[1][$el_key];
- $attributes = $elements[2][$el_key];
- if( is_array( $this->ignore ) && !in_array( $element_name, $this->ignore ) )
- $nodes[] = array( 'literal' => $literal, 'name' => $要素名, '属性' => $属性 );
- }
- }
-
- # 削除する属性がなかった場合は XML を返します
- if( !$nodes[0] )
- return $this->str;
- else
- $nodes を返します。
- }
-
- private function findAttributes( $nodes )
- {
-
- # 属性を抽出
- foreach( $nodes as &$node )
- {
- preg_match_all( "/([^ =]+)s*=s*["| ']{0,1}([^"']*)["|']{0,1}/i", $node['attributes'], $attributes );
- if( $attributes[1] )
- {
- foreach( $attributes[1] as $att_key => $att )
- {
- $literal = $attributes[0][$att_key]
- $attribute_name = $attributes[1][$att_key]; $value = $attributes[2][$att_key];
- $atts[] = array( 'literal' => $literal, 'name' => $attribute_name, 'value' => $value ); }
- }
- else
- $node['attributes'] = null;
-
- $node['attributes'] = $atts;
- unset( $atts );
-
- return $nodes;
- }
-
- private function RemoveAttributes( $nodes )
- {
-
- # 不要な属性を削除します
- foreach( $nodes as $node )
- {
-
- # ノードに保持する属性があるかどうかを確認します
- $node_name = $node['name' ];
- $new_attributes = '';
- if( is_array( $node['attributes'] ) )
- {
- foreach( $node['attributes'] as $attribute )
- {
- if( ( is_array( $this->allow ) && in_array( $attribute ['name'], $this->allow ) ) $this->isException( $node_name, $attribute['name'], $this->Exceptions ) )
- $new_attributes = $this-> ;createAttributes( $new_attributes, $attribute['name'], $attribute['value'] );
- }
- }
- $replacement = ( $new_attributes ) ? "<$node_name $new_attributes>" : "<$node_name>";
- $this->str = preg_replace( '/'.reg_escape( $node['literal'] ) .'/', $replacement, $this->str );
- }
- }
-
- プライベート関数 isException( $element_name, $attribute_name, $Exceptions )
- {
- if( array_key_exists($element_name, $this->例外) ) )
- {
- if( in_array( $attribute_name, $this- >例外[$element_name] ) )
- true を返します。
- }
-
- false を返します。
- }
-
- プライベート関数 createAttributes( $new_attributes, $name, $value )
- {
- if( $new_attributes )
- $new_attributes .= " ";
- $new_attributes .= "$name="$value"";
-
- $new_attributes を返します。
- }
- }
- ?>
复制代
调用实例:
-
- $str = 'これは のサンプル HTML です。 壊れています ';
-
- $sa = 新しい cleanHtml;
- $sa->allow = array( 'id' );
-
- $sa->Exceptions = array(
- 'img' => array( 'src', 'alt' ),
- 'a' => array( 'href', 'title' ),
- 'iframe '=>array('src','frameborder'),
- );
-
- echo $str = $sa->strip( $str );
- ?>
复制代
|