「PHP」htmlentitiesで文字を全てHTMLエンティティに変換する

書式
htmlentities — 適用可能な文字を全て HTML エンティティに変換する
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<?php
$target = "<a href=\"https://arkgame.com/\">test</a>";
$result = htmlentities($target);
print_r($result);
?>
<?php $target = "<a href=\"https://arkgame.com/\">test</a>"; $result = htmlentities($target); print_r($result); ?>
<?php
 
$target = "<a href=\"https://arkgame.com/\">test</a>";
 
$result = htmlentities($target);
 
print_r($result);
?>

実行結果
<a href="https://arkgame.com/">test</a>

PHP

Posted by arkgame