wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_kses_named_entities › WordPress Function

Since3.0.0
已弃用n/a
wp_kses_named_entities ( $matches )
参数:
  • (array) $matches preg_replace_callback() matches array.
    Required: Yes
返回:
  • (string) Correctly encoded entity.
定义在:
文档:

Callback for `wp_kses_normalize_entities()` regular expression.

This function only accepts valid named entity references, which are finite, case-sensitive, and highly scrutinized by HTML and XML validators.


源码

function wp_kses_named_entities( $matches ) {
	global $allowedentitynames;

	if ( empty( $matches[1] ) ) {
		return '';
	}

	$i = $matches[1];
	return ( ! in_array( $i, $allowedentitynames, true ) ) ? "&$i;" : "&$i;";
}