wp_specialchars

函数
wp_specialchars ( $text, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false )
参数
  • (string) $text Text to escape.
    Required:
  • (string) $quote_style Unused.
    Required:
    Default: ENT_NOQUOTES
  • (false|string) $charset Unused.
    Required:
    Default: false
  • (false) $double_encode Whether to double encode. Unused.
    Required:
    Default: false
返回值
  • (string) Escaped `$text`.
相关
  • esc_html()
定义位置
相关方法
_wp_specialcharswp_specialchars_decodewp_cache_reset_canonical_charsetwp_slash
引入
-
弃用
2.8.0

wp_specialchars: 这个函数对字符串中的特殊字符进行编码,以便在HTML中使用。它用于转义任何在HTML中具有特殊意义的字符,如<、>、&等,以确保内容在网页中的正确显示。

为HTML块进行转义。

function wp_specialchars( $text, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'esc_html()' );
	if ( func_num_args() > 1 ) { // Maintain back-compat for people passing additional arguments.
		return _wp_specialchars( $text, $quote_style, $charset, $double_encode );
	} else {
		return esc_html( $text );
	}
}

常见问题

FAQs
查看更多 >