函数原型
attribute_escape( string $text ): string
函数描述
Escaping for HTML attributes.
是否弃用
Warning: This function has been deprecated. Use esc_attr() instead.
函数参数
-
$text
string
Required
函数返回值
string
函数位置
File: wp-includes/deprecated.php.
函数源码
function attribute_escape( $text ) {
_deprecated_function( __FUNCTION__, '2.8.0', 'esc_attr()' );
return esc_attr( $text );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.8.0 | Use esc_attr() |
| 2.0.6 | Introduced. |

