So example I don't want...
< = <
> = >
& = &
I'd rather use...
< = <
> = >
& = &
I know we can use unset, here is what I've tried...
Code: Select all
<?php
$table = get_html_translation_table();
unset($table["<"]);
unset($table[">"]);
$table["<"] = <
$table[">"] = >
echo htmlspecialchars('<br />hello world<br />');
?>