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
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Display translated text that has been escaped for safe use in an attribute.
*
* @since 2.8.0
*
* @param string $text Text to translate.
* @param string $domain Optional. Text domain. Unique identifier for retrieving translated strings.
*/
function esc_attr_e( $text, $domain = ‘default’ ) {
echo esc_attr( translate( $text, $domain ) );
}
|
相关
- 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
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!