WordPress函数文档esc_attr_e()

翻译,编码并响应 描述 Displays translated text that has been esca…

翻译,编码并响应

描述

Displays translated text that has been escaped for safe use in an attribute. Encodes < > & ” ‘ (less than, greater than, ampersand, double quote, single quote). Will never double encode entities.

If you need the value for use in PHP, use __() and escape the value with esc_attr() when output into an attribute.

用法

<?php esc_attr_e$text$domain ?>

参数

$text

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

默认值: None

$textdomain

(string) (可选) 取翻译文本的域。

默认值: ‘default’

返回值

(void) 

无返回值

历史

  • 添加于 版本: 2.8.0

源文件

esc_attr_e() 函数的代码位于 wp-includes/l10n.php.

相关

  • esc_html()
  • esc_attr()
    • esc_attr__()
    • esc_attr_e()
  • esc_js()
  • esc_textarea()
  • esc_url()

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

L10n:
translate(),
__(),
_e(),
_n(),
_x(),
_ex(),
_nx(),
esc_attr__(),
esc_attr_e(),
esc_attr_x(),
esc_html__(),
esc_html_e(),
esc_html_x(),
_n_noop(),
_nx_noop(),
translate_nooped_plural()

  • 原文:http://codex.wordpress.org/Function_Reference/esc_attr_e
类别:WordPress函数文档

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

评论 (0)COMMENT