Dup Goto 📝

HtmlEntities

PT2/lang/php/strings php 04-09 10:43:39
To Pop
7 lines, 34 words, 209 chars Wednesday 2025-04-09 10:43:39

The chars <, >, and & may need to be converted to &lt;, &gt; and &amp; via the html entities function htmlentities

$a = "<hello&>";
$b = htmlentities($a);
echo $b;
# &lt;hello&amp;&gt;