esc_attr_e()

esc_attr_e( string $text, string $domain = ‘default’ ) …

esc_attr_e( string $text, string $domain = ‘default’ )

显示已转义以便在属性中安全使用的翻译文本。
Display translated text that has been escaped for safe use in an attribute.

目录锚点:#说明#参数#返回#源码#笔记


说明(Description)

编码&“’(小于、大于、与号、双引号、单引号)。不会对实体进行双重编码。

如果需要在PHP中使用该值,请使用escu attruu()。


参数(Parameters)

参数 类型 必填 说明
$text (string) 必需 要翻译的文本。
$domain (string) 可选 文本域。检索转换字符串的唯一标识符。

返回(Return)

无返回值


源码(Source)

/**
 * 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 ) );
}
更新版本 源码位置 使用 被使用
2.8.0 wp-includes/l10n.php:317 48 2

笔记(Notes)

esc_attr_e函数返回值,例如:

类别:WordPress 函数手册

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

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册