文字列をHTMLエンティティ化 - htmlentities()
当ページのリンクには広告が含まれています。
プログラミング言語PHPで、指定した文字列をHTMLエンティティ化する関数 htmlentities()を紹介します。
htmlentities関数
string htmlentities ( string $string )
文字列をHTMLエンティティ化します。
引数 $string エンティティ化する文字列を指定します。
返り値
HTMLエンティティ化されて文字列が返されます。
サンプルコード
サンプルコードでは変数「$srt」に格納されたHTMLコードの文字列をエンティティ化します。
htmlentities( 文字列 )
<?php // 変数定義 $str = "<!DOCTYPE html>" . "<html>" . "<head>" . "<meta charset='utf-8'>"; // エンティティ化 var_dump( htmlspecialchars($str) ); ?>
実行結果です。
string(73) "<!DOCTYPE html><html><head><meta charset='utf-8'>"