Dup Ver Goto 📝

HtmlEntities

PT2/lang/php/strings php does not exist
To
7 lines, 34 words, 209 chars Page 'HtmlEntities' does not exist.

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;