attribute_escape

函数
attribute_escape ( $text )
参数
  • (string) $text
    Required:
返回值
  • (string)
相关
  • esc_attr()
定义位置
相关方法
like_escapetag_escapelanguage_attributesjs_escapepage_attributes_meta_box
引入
2.0.6
弃用
2.8.0

attribute_escape: 这个函数用于转义HTML属性以防止XSS(跨站脚本)攻击。它有一个参数,即要转义的属性。

对HTML属性进行回避。

function attribute_escape( $text ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'esc_attr()' );
	return esc_attr( $text );
}

常见问题

FAQs
查看更多 >