PHP では、htmlentities() 関数を使用して html をエスケープし、文字を HTML エンティティに変換できます。構文は「htmlentities(string,flags,character-set,double_encode)」です。 PHP の html_entity_decode() 関数を使用して、HTML をエスケープ解除し、HTML エンティティを文字に変換することもできます。
このチュートリアルの動作環境: Windows7 システム、PHP8 バージョン、DELL G3 コンピューター
HTML タグをエスケープします。 php
1. htmlentities() 関数は html
をエスケープします。htmlentities() 関数は、文字を HTML エンティティに変換します。
ヒント: HTML エンティティを文字に変換するには、html_entity_decode() 関数を使用します。
ヒント: htmlentities() で使用される変換テーブルを返すには、get_html_translation_table() 関数を使用してください。
#文法htmlentities(string,flags,character-set,double_encode)##2. html_entity_decode() 関数は html
## を逆にします#html_entity_decode() 関数は、HTML エンティティを文字に変換します。
html_entity_decode() 関数は、htmlentities() 関数の逆関数です。 文法html_entity_decode(string,flags,character-set)
[推奨学習: 「PHPビデオチュートリアル
」]以上がPHPでHTMLタグをエスケープする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。