1. 首页
  2. WordPress钩子手册

esc_textarea

apply_filters( ‘esc_textarea’, string $safe_text, string $text )

过滤器::过滤一个已清理并转义的字符串,以便在textarea元素中输出。
Filter Hook: Filters a string cleaned and escaped for output in a textarea element.

目录锚点:#参数#源码


参数(Parameters)

参数 类型 说明
$safe_text (string) 转义后的文本。
$text (string) 在被转义之前的文本。

源码(Source)

/**
 * Escaping for textarea values.
 *
 * @since 3.1.0
 *
 * @param string $text
 * @return string
 */
function esc_textarea( $text ) {
	$safe_text = htmlspecialchars( $text, ENT_QUOTES, get_option( 'blog_charset' ) );
	/**
	 * Filter 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 );
}
更新版本 源码位置 使用 被使用
3.1.0 wp-includes/formatting.php:4516 1 0

esc_textarea 为WP2原创文章,链接:https://www.wp2.cn/hook/esc_textarea/