esc_textarea

函数
esc_textarea ( $text )
参数
  • (string) $text
    Required:
返回值
  • (string)
定义位置
相关方法
esc_attr_eesc_attrsanitize_textarea_fieldblock_footer_areaesc_attr__
引入
3.1.0
弃用
-

esc_textarea: 这个函数用来转义一个字符串,以便在HTML中的textarea元素中使用。

对文本区域的值进行加长。

function esc_textarea( $text ) {
	$safe_text = htmlspecialchars( $text, ENT_QUOTES, get_option( 'blog_charset' ) );
	/**
	 * Filters a string cleaned and escaped for output in a textarea element.
	 *
	 * @since 3.1.0
	 *
	 * @param string $safe_text The text after it has been escaped.
	 * @param string $text      The text prior to being escaped.
	 */
	return apply_filters( 'esc_textarea', $safe_text, $text );
}

常见问题

FAQs
查看更多 >