PHP - 获取 HTML 转义表函数



语法

array get_html_translation_table ([ int $table = HTML_SPECIALCHARS [, 
   int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = "UTF-8" ]]] )

定义和用法

它返回 htmlentities() 和 htmlspecialchars() 函数使用的转义表。

返回值

它返回一个数组形式的转义表,原始字符作为键,实体作为值。

参数

序号 参数及描述
1

table

包含要返回哪个表的信息,HTML_ENTITIES 或 HTML_SPECIALCHARS

2

flags

包含标志信息

示例

试试以下示例

<?php
   print_r (get_html_translation_table(HTML_SPECIALCHARS));
?>

这将产生以下结果:

Array
(
   ["] => "
   [&] => &
   [<] => <
   [>] => >
)
php_function_reference.htm
广告