一般在写 Html 代码的标签属性的时候会是下边的格式:

1

<input type="text"name="rep"value="rep_value"/>

那如果 value 属性是动态输出的呢?

1

<input type="text"name="rep"value="<?phpechoget_option('rep_value');?>"/>

但是,如果动态输出的属性里有双引号、尖括号等特殊字符,Html 代码就会被打乱,这时就可以使用 esc_attr() 函数对输出的属性进行转义。

使用方法

参数

$text(字符串)(必须) 要转义的字符串。 默认值:None

返回值

返回转义后的字符串。

例子

1

<input type="text"name="rep"value="<?phpechoesc_attr(get_option('rep_value'));?>"/>

其它

此函数位于:wp-includes/formatting.php

更多字符串过滤函数:https://www.weixiaoduo.com/tag/esc-functions