PHP フィルター HTML タグ属性クラスの使用例_PHP チュートリアル
phpフィルターhtmlタグ属性クラスの使用例
具体的な方法は以下の通りです
HtmlAttributeFilter.class.php クラスファイルは次のとおりです:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
/** HTML 属性フィルター * 日付: 2013-09-22 * 著者: fdipzone * バージョン: 1.0 * * 機能: * パブリック ストリップ フィルター属性 * public setAllow 許可される属性を設定します * public setException 特殊なケースを設定します * public setIgnore 無視マークを設定します * private findElements 処理が必要な要素を検索します * プライベート findAttributes 属性の検索 * private RemoveAttributes 属性を削除します * private isException 特殊なケースかどうかを判断します * private createAttributes 属性を作成する * プライベート保護特殊文字エスケープ */
class HtmlAttributeFilter{ // クラスの開始
private $_str = '' // ソース文字列 ;private $_allow = array(); // 保持が許可される属性 例: array('id','class','title') private $_Exception = array(); // 特殊なケースの例: array('a'=>array('href','class'),'span'=>array('class')) private $_ignore = array(); // フィルターされたタグを無視します 例: array('span','img')
/**HTML を処理し、保持されない属性をフィルターします * @param String $str ソース文字列 * @return 文字列 */ パブリック関数ストリップ($str){ $this->_str = $str; if(is_string($this->_str) && strlen($this->_str)>0){ // 文字列を決定します
$this->_str = strto lower($this->_str) // 小文字に変換します
$res = $this->findElements(); if(is_string($res)){ $res を返す; }$nodes = $this->findAttributes($res); $this->removeAttributes($nodes); }$this->_str; を返す }
/**許可される属性を設定する * @param 配列 $param */ パブリック関数 setAllow($param=array()){ $this->_allow = $param; }
/**特別なケースをセットアップします * @param 配列 $param */ パブリック関数 setException($param=array()){ $this->_例外 = $param; }
/**無視フラグを設定します * @param 配列 $param */ パブリック関数 setIgnore($param=array()){ $this->_ignore = $param; }
/**処理対象の要素を検索する*/ プライベート関数 findElements(){ $nodes = 配列(); 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'=>$element_name, 'attributes'=>$attributes); } } }
if(!$nodes[0]){ return $this->_str; }その他{ $nodes を返します。 } }
/**物件を検索する * @param 処理される配列 $nodes 要素 */ プライベート関数 findAttributes($nodes){ foreach($nodes as &$node){ preg_match_all("/([^ =]+)s*=s*["|']{0,1}([^"']*)["|']{0,1}/i", $ノード['属性']、$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); } }その他{ $node['attributes'] = null; } $node['attributes'] = $atts; unset($atts); } $nodes を返します。 }
/**属性を削除します * @param 処理される配列 $nodes 要素 */ プライベート関数removeAttributes($nodes){ foreach($node として $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->_例外)){ $new_attributes = $this->createAttributes($new_attributes, $attribute['name'], $attribute['value']); } } } $replacement = ($new_attributes) ? "<$node_name $new_attributes>" : "<$node_name>"; $this->_str = preg_replace('/'.$this->protect($node['literal']).'/', $replacement, $this->_str); } }
/**特殊なケースかどうかを判断します * @param String $element_name 要素名 * @param String $attribute_name 属性名 * @param Array $Exceptions 許可される例外 * @return ブール値 */ プライベート関数 isException($element_name, $attribute_name, $Exceptions){ if(array_key_exists($element_name, $this->_Exception)){ if(in_array($attribute_name, $this->_例外[$element_name])){ true を返します。 } } false を返します。 }
/**创建プロパティ * @param String $new_attributes * @param String $name * @param String $value * @return String */ プライベート関数 createAttributes($new_attributes, $name, $value){ if($new_attributes){ $new_attributes .= " "; } $new_attributes .= "$name="$value""; $new_attributes を返します。 }
/**特殊文字のエスケープ * @param String $str ソース文字列 * @return 文字列 */ プライベート関数protect($str){ $conversions = array( "^" => "^"、 "[" => 「[」、 」。 => 「。」、 "$" => 「$」、 "{" => 「{」、 "*" => 「*」、 "(" => "(", "\" => 「\\」、 "/" => 「/」、 「+」=> 「+」、 ")" => ")"、 "|" => "|"、 「?」 => 「?」、 「<」 => 「<」、 「>」 => 「>」 ); return strtr($str, $conversions); }
} // 授業終了
?> |
デモ例代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
require('HtmlAttributeFilter.class.php');
$str = '
$obj = 新しい HtmlAttributeFilter();
// 允许id プロパティ $obj->setAllow(array('id'));
$obj->setException(array( 'a' => array('href'), // a 标签允许有 href プロパティ例外 'ul' => array('class') // ul 标签允许有クラス属性特例 ));
// img 标签忽略,不过滤いかなるプロパティ $obj->setIgnore(array('img'));
echo 'ソース str: echo htmlspecialchars($str).' echo 'フィルター str: echo htmlspecialchars($obj->strip($str)); ?> |

ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事

ホットツール

メモ帳++7.3.1
使いやすく無料のコードエディター

SublimeText3 中国語版
中国語版、とても使いやすい

ゼンドスタジオ 13.0.1
強力な PHP 統合開発環境

ドリームウィーバー CS6
ビジュアル Web 開発ツール

SublimeText3 Mac版
神レベルのコード編集ソフト(SublimeText3)

ホットトピック









PHP 8.4 では、いくつかの新機能、セキュリティの改善、パフォーマンスの改善が行われ、かなりの量の機能の非推奨と削除が行われています。 このガイドでは、Ubuntu、Debian、またはその派生版に PHP 8.4 をインストールする方法、または PHP 8.4 にアップグレードする方法について説明します。

CakePHP は、PHP 用のオープンソース フレームワークです。これは、アプリケーションの開発、展開、保守をより簡単にすることを目的としています。 CakePHP は、強力かつ理解しやすい MVC のようなアーキテクチャに基づいています。モデル、ビュー、コントローラー

ファイルのアップロードを行うには、フォーム ヘルパーを使用します。ここではファイルアップロードの例を示します。

Visual Studio Code (VS Code とも呼ばれる) は、すべての主要なオペレーティング システムで利用できる無料のソース コード エディター (統合開発環境 (IDE)) です。 多くのプログラミング言語の拡張機能の大規模なコレクションを備えた VS Code は、

CakePHP はオープンソースの MVC フレームワークです。これにより、アプリケーションの開発、展開、保守がはるかに簡単になります。 CakePHP には、最も一般的なタスクの過負荷を軽減するためのライブラリが多数あります。

このチュートリアルでは、PHPを使用してXMLドキュメントを効率的に処理する方法を示しています。 XML(拡張可能なマークアップ言語)は、人間の読みやすさとマシン解析の両方に合わせて設計された多用途のテキストベースのマークアップ言語です。一般的にデータストレージに使用されます
