WordPress esc_attr()函数
【函数介绍】 esc_attr()函数主要用于对字符串进行转义,比如 “” , “,”,“ ” ” 【函数使用…
【函数介绍】
esc_attr()函数主要用于对字符串进行转义,比如 “” , “,”,“ ” ”
【函数使用】
<?php echo esc_attr( $text ) ?>
【参数说明】
$text
(string) (必须) 需要过滤的字符串.
默认: None
【返回值】
(string)
过滤掉特色字符的字符串。
【函数实例】
<?php echo '<input type="text" id="user-email" name="user-email" value="' . esc_attr( $_POST['email'] ) . '">'; ?>
【源代码】
esc_attr()位于 wp-includes/formatting.php,函数代码如下:
function esc_attr( $text ) { $safe_text = wp_check_invalid_utf8( $text ); $safe_text = _wp_specialchars( $safe_text, ENT_QUOTES ); return apply_filters( 'attribute_escape', $safe_text, $text ); }
类别:WordPress入门、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!