WordPress函数文档esc_textarea()
将<textarea>元素中的文本编码成 HTML 实体 描述 将<textarea>…
将<textarea>元素中的文本编码成 HTML 实体
描述
将<textarea>
元素中的文本编码成 HTML 实体。已经是 HTML实体中的 & 还会再次被编码!
用法
<?php esc_textarea( $text ); ?>
参数
$text
(string) (必填) 将编码成实体的文本。
默认值: None
返回值
(string)
已经编码成 HTML 实体的文本。
历史
添加于 版本: 3.1
源文件
esc_textarea() 函数的代码位于 wp-includes/formatting.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* 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 );
}
|
相关
See: Data Validation article for an in-depth discussion of input and output sanitization.
- esc_html()
- esc_html__()
- esc_html_e()
- esc_attr()
- esc_attr__()
- esc_attr_e()
- esc_js()
- esc_sql()
- esc_textarea()
- esc_url()
- esc_url_raw()
- 原文:http://codex.wordpress.org/Function_Reference/esc_textarea
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!