WpOrg\Requests

IdnaEncoder::nameprep()protected staticWP 1.0

Prepare a text string for use as an IDNA name

Method of the class: IdnaEncoder{}

No Hooks.

Return

String. Prepared string

Usage

$result = IdnaEncoder::nameprep( $text );
$text(string) (required)
Text to prepare.

IdnaEncoder::nameprep() code WP 6.6.2

protected static function nameprep($text) {
	return $text;
}