get_html_translation_table() 函數返回 htmlspecialchars() 和 htmlentities() 使用的轉換表。
用法
get_html_translation_table(func, table, flags)
參數
func− 要返回的翻譯表。
以下是可能的值 -
HTML_SPECIALCHARS - 默認。翻譯一些需要 URL-encoding 才能在 HTML 頁麵上正確顯示的字符
HTML_ENTITIES - 翻譯所有需要 URL-encoding 才能在 HTML 頁麵上正確顯示的字符。
table- 它包含關於哪個表返回 HTML_ENTITIES 或 HTML_SPECIALCHARS 的信息
flags− 標誌信息
返回
get_html_translation_table() 函數將轉換表作為數組返回,原始字符作為鍵,實體作為值。
以下是一個例子 -
示例
<?php
print_r (get_html_translation_table(HTML_SPECIALCHARS));
?>
以下是輸出 -
輸出
Array ( ["] => " [&] => & [<] => < [>] => > )
讓我們看另一個例子 -
示例
<?php
print_r (get_html_translation_table(HTML_SPECIALCHARS));
?>
以下是輸出 -
輸出
Array ( ["] => " [&] => & [<] => < [>] => > )
相關用法
- PHP get_headers()用法及代碼示例
- PHP get_resource_type()用法及代碼示例
- PHP get_class()用法及代碼示例
- PHP get_declared_interfaces()用法及代碼示例
- PHP get_resource_id()用法及代碼示例
- PHP get_class_methods()用法及代碼示例
- PHP get_class_vars()用法及代碼示例
- PHP get_object_vars()用法及代碼示例
- PHP get_browser()用法及代碼示例
- PHP get_parent_class()用法及代碼示例
- PHP get_defined_vars()用法及代碼示例
- PHP get_called_class()用法及代碼示例
- PHP get_declared_classes()用法及代碼示例
- PHP get_meta_tags()用法及代碼示例
- PHP getimagesizefromstring()用法及代碼示例
- PHP getservbyport()用法及代碼示例
- PHP gethostnamel()用法及代碼示例
- PHP getcwd()用法及代碼示例
- PHP getcwd( )用法及代碼示例
- PHP getrandmax()用法及代碼示例
注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 get_html_translation_table() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。