IdnaEncoder::digit_to_char( int $digit ): string

In this article

Convert a digit to its respective character

Parameters

$digitintrequired
Digit in the range 0-35

Return

string Single character corresponding to digit

Source

protected static function digit_to_char($digit) {
	// @codeCoverageIgnoreStart
	// As far as I know, this never happens, but still good to be sure.
	if ($digit < 0 || $digit > 35) {
		throw new Exception(sprintf('Invalid digit %d', $digit), 'idna.invalid_digit', $digit);
	}

	// @codeCoverageIgnoreEnd
	$digits = 'abcdefghijklmnopqrstuvwxyz0123456789';
	return substr($digits, $digit, 1);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.