valid_unicode

Advertisement

Summery Summery

Determines if a Unicode codepoint is valid.

Syntax Syntax

valid_unicode( int $i )

Parameters Parameters

$i

(Required) Unicode codepoint.

Return Return

(bool) Whether or not the codepoint is a valid Unicode codepoint.

Source Source

File: wp-includes/kses.php

 */
function wp_kses_xml_named_entities( $matches ) {
	global $allowedentitynames, $allowedxmlnamedentities;

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

Advertisement

Changelog Changelog

Changelog
Version Description
2.7.0 Introduced.

Advertisement

Leave a Reply