2Hi.Biz
Trang chủ | TWIG | Xtscript | Templates | Xtgem
Functions Xtscript
AiChat.Wap.Sh
Htmlspecialchars
chuyển đổi ký tự dành riêng cho html entities
[...] = optional ... = your value [var $... = ]call htmlspecialchars $val=…[; $flags=…][;$encoding=…][; $double_encoding=…] $flags = ENT_QUOTES
(dấu ngoặc kép duy nhất được cũng chuyển đổi)
$encoding =... bộ ký tự mã hóa lựa chọn khác cho cờ và cài đặt mã hóa xem htmlspecialchars ngày php.net
$double_encode = 0 không tái mã hóa hiện có các thực thể html (mặc định là để mã hóa tất cả mọi thứ)
Code ví dụ:
<!--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-->
Code đã chạy:
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;