_sanitize_text_fields
函数
_sanitize_text_fields ( $str, $keep_newlines = false )
- Access
- Private
- 参数
-
-
(string)
$str
String to sanitize.- Required: 是
-
(bool)
$keep_newlines
Optional. Whether to keep newlines. Default: false.- Required: 否
- Default: false
-
(string)
- 返回值
-
- (string) Sanitized string.
- 定义位置
-
-
wp-includes/formatting.php
, line 5475
-
wp-includes/formatting.php
- 引入
- 4.7.0
- 弃用
- –
Internal helper function to sanitize a string from user input or from the database.
function _sanitize_text_fields( $str, $keep_newlines = false ) { if ( is_object( $str ) || is_array( $str ) ) { return ''; } $str = (string) $str; $filtered = wp_check_invalid_utf8( $str ); if ( strpos( $filtered, '
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。