[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/Requests/src/ -> IdnaEncoder.php (summary)

(no description)

File Size: 412 lines (12 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

IdnaEncoder:: (8 methods):
  encode()
  to_ascii()
  is_ascii()
  nameprep()
  utf8_to_codepoints()
  punycode_encode()
  digit_to_char()
  adapt()


Class: IdnaEncoder  - X-Ref

IDNA URL encoder

Note: Not fully compliant, as nameprep does nothing yet.

encode($hostname)   X-Ref
Encode a hostname using Punycode

return: string Punycode-encoded hostname
param: string|Stringable $hostname Hostname

to_ascii($text)   X-Ref
Convert a UTF-8 text string to an ASCII string using Punycode

return: string ASCII string
param: string $text ASCII or UTF-8 string (max length 64 characters)

is_ascii($text)   X-Ref
Check whether a given text string contains only ASCII characters

return: bool Is the text string ASCII-only?
param: string $text Text to examine.

nameprep($text)   X-Ref
Prepare a text string for use as an IDNA name

return: string Prepared string
param: string $text Text to prepare.

utf8_to_codepoints($input)   X-Ref
Convert a UTF-8 string to a UCS-4 codepoint array

Based on \WpOrg\Requests\Iri::replace_invalid_with_pct_encoding()

return: array Unicode code points
param: string $input Text to convert.

punycode_encode($input)   X-Ref
RFC3492-compliant encoder

return: string Punycode-encoded string
param: string $input UTF-8 encoded string to encode

digit_to_char($digit)   X-Ref
Convert a digit to its respective character

return: string Single character corresponding to digit
param: int $digit Digit in the range 0-35

adapt($delta, $numpoints, $firsttime)   X-Ref
Adapt the bias

return: int|float New bias
param: int $delta
param: int $numpoints
param: bool $firsttime



Generated : Wed May 1 08:20:02 2024 Cross-referenced by PHPXref