logo
Home XtGem- Templates- XtScript- bottom
convert reserved characters to html entities
[...] = optional ... = your value
[var $... = ]call htmlspecialchars $val=…[;$flags=…][;$encoding=…][;$double_encoding=…]
$flags=ENT_QUOTES (single quotes are also converted)
$encoding =... charset encoding
for other options for flags and encoding settings see htmlspecialchars on php.net
$double_encode=0 do not re encode existing html entities (default is to encode everything)
Show in textarea
<!--parser:xtscript-->
var $input = <span style='color:red'>&quot;foobar&quot;</span>
var $flags=ENT_QUOTES
var $double_encode=0
var $output = call htmlspecialchars $val=$input;$flags=$flags ;$double_encode=$double_encode
print input = $input<br />
print output = $output<br />
var $output=call htmlspecialchars $val=$output
print actual output = $output
<!--/parser:xtscript-->
Show in textarea
Reload
input = "foobar"
output = <span style='color:red'>"foobar"</span>
actual output = &lt;span style=&#039;color:red&#039;&gt;&quot;foobar&quot;&lt;/span&gt;
Powered by XtGem
About us Contact Forum top