WordPress函数文档esc_html()

将 & ” ’(小于号,大于号,&,双引号,单引号)编码,转成HTML 实体 描述 将 &lt…

将 & ” ’(小于号,大于号,&,双引号,单引号)编码,转成HTML 实体

描述

将 < > & ” ‘(小号,大于号,&,双引引号)编码,转成HTML 实体,已经是实体的并不转换。

功能和 esc_attr() 类似。

用法

<?php esc_html$text ?>

参数

$text

(string) (必填) 将编码成实体的文本。

默认值: None

返回值

HTML (string

经编码成 HTML 实体的文本。

示例

$html now contains this:

Which would be displayed in an HTML document as:

Instead of this:

A link

注意

  • 使用到 the ‘esc_html’ 过滤器.

历史

  • 添加于 版本: 2.8.0

源文件

esc_html() 函数的代码位于 wp-includes/formatting.php.

相关

See: Data Validation article for an in-depth discussion of input and output sanitization.

  • esc_html()
    • esc_html__()
    • esc_html_e()
  • esc_attr()
    • esc_attr__()
    • esc_attr_e()
  • esc_js()
  • esc_sql()
  • esc_textarea()
  • esc_url()
    • esc_url_raw()
  • 原文:http://codex.wordpress.org/Function_Reference/esc_html
类别:WordPress函数文档

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT