Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
idna_convert ($options=false) | |
set_parameter ($option, $value=false) | |
decode ($input, $one_time_encoding=false) | |
encode ($decoded, $one_time_encoding=false) | |
get_last_error () | |
_decode ($encoded) | |
_encode ($decoded) | |
_adapt ($delta, $npoints, $is_first) | |
_encode_digit ($d) | |
_decode_digit ($cp) | |
_error ($error= '') | |
_nameprep ($input) | |
_hangul_decompose ($char) | |
_hangul_compose ($input) | |
_get_combining_class ($char) | |
_apply_cannonical_ordering ($input) | |
_combine ($input) | |
_utf8_to_ucs4 ($input) | |
_ucs4_to_utf8 ($input) | |
_ucs4_to_ucs4_string ($input) | |
_ucs4_string_to_ucs4 ($input) |
Attributs publics | |
$NP = array() | |
$_punycode_prefix = 'xn--' | |
$_invalid_ucs = 0x80000000 | |
$_max_ucs = 0x10FFFF | |
$_base = 36 | |
$_tmin = 1 | |
$_tmax = 26 | |
$_skew = 38 | |
$_damp = 700 | |
$_initial_bias = 72 | |
$_initial_n = 0x80 | |
$_sbase = 0xAC00 | |
$_lbase = 0x1100 | |
$_vbase = 0x1161 | |
$_tbase = 0x11A7 | |
$_lcount = 19 | |
$_vcount = 21 | |
$_tcount = 28 | |
$_ncount = 588 | |
$_scount = 11172 | |
$_error = false | |
$_api_encoding = 'utf8' | |
$_allow_overlong = false | |
$_strict_mode = false |
Encode/decode Internationalized Domain Names.
The class allows to convert internationalized domain names (see RFC 3490 for details) as they can be used with various registries worldwide to be translated between their original (localized) form and their encoded form as it will be used in the DNS (Domain Name System).
The class provides two public methods, encode() and decode(), which do exactly what you would expect them to do. You are allowed to use complete domain names, simple strings and complete email addresses as well. That means, that you might use any of the following notations:
Unicode input might be given as either UTF-8 string, UCS-4 string or UCS-4 array. Unicode output is available in the same formats. You can select your preferred format via set_paramter().
ACE input and output is always expected to be ASCII.
Définition à la ligne 54 du fichier idna_convert.class.php.
idna_convert::_adapt | ( | $delta, | |
$npoints, | |||
$is_first | |||
) |
Adapt the bias according to the current code point and position private
Définition à la ligne 517 du fichier idna_convert.class.php.
Référencé par _decode(), et _encode().
idna_convert::_apply_cannonical_ordering | ( | $input | ) |
Apllies the cannonical ordering of a decomposed UCS4 sequence
array | Decomposed UCS4 sequence |
Définition à la ligne 718 du fichier idna_convert.class.php.
Références _get_combining_class().
Référencé par _nameprep().
idna_convert::_combine | ( | $input | ) |
Do composition of a sequence of starter and non-starter
array | UCS4 Decomposed sequence |
Définition à la ligne 751 du fichier idna_convert.class.php.
Référencé par _nameprep().
idna_convert::_decode | ( | $encoded | ) |
The actual decoding algorithm private
Définition à la ligne 360 du fichier idna_convert.class.php.
Références $_base, $_initial_bias, $_initial_n, _adapt(), _decode_digit(), _error(), et _ucs4_to_utf8().
Référencé par decode().
idna_convert::_decode_digit | ( | $cp | ) |
Decode a certain digit private
Définition à la ligne 540 du fichier idna_convert.class.php.
Références $_base.
Référencé par _decode().
idna_convert::_encode | ( | $decoded | ) |
The actual encoding algorithm private
Définition à la ligne 419 du fichier idna_convert.class.php.
Références $_base, $_initial_bias, $_initial_n, _adapt(), _encode_digit(), _error(), _nameprep(), et _utf8_to_ucs4().
Référencé par encode().
idna_convert::_encode_digit | ( | $d | ) |
Encoding a certain digit private
Définition à la ligne 531 du fichier idna_convert.class.php.
Référencé par _encode().
idna_convert::_error | ( | $error = '' | ) |
Internal error handling method private
Définition à la ligne 550 du fichier idna_convert.class.php.
Référencé par _decode(), _encode(), _nameprep(), _ucs4_string_to_ucs4(), _ucs4_to_utf8(), _utf8_to_ucs4(), decode(), encode(), et set_parameter().
idna_convert::_get_combining_class | ( | $char | ) |
Returns the combining class of a certain wide char
integer | Wide char to check (32bit integer) |
Définition à la ligne 707 du fichier idna_convert.class.php.
Référencé par _apply_cannonical_ordering(), et _nameprep().
idna_convert::_hangul_compose | ( | $input | ) |
Ccomposes a Hangul syllable (see http://www.unicode.org/unicode/reports/tr15/#Hangul
array | Decomposed UCS4 sequence |
Définition à la ligne 665 du fichier idna_convert.class.php.
Références $_lbase, $_sbase, $_tbase, $_tcount, et $_vbase.
Référencé par _nameprep().
idna_convert::_hangul_decompose | ( | $char | ) |
Decomposes a Hangul syllable (see http://www.unicode.org/unicode/reports/tr15/#Hangul
integer | 32bit UCS4 code point |
Définition à la ligne 645 du fichier idna_convert.class.php.
Références $_tcount.
Référencé par _nameprep().
idna_convert::_nameprep | ( | $input | ) |
Do Nameprep according to RFC3491 and RFC3454
array | Unicode Characters |
Définition à la ligne 561 du fichier idna_convert.class.php.
Références _apply_cannonical_ordering(), _combine(), _error(), _get_combining_class(), _hangul_compose(), et _hangul_decompose().
Référencé par _encode().
idna_convert::_ucs4_string_to_ucs4 | ( | $input | ) |
Convert UCS-4 strin into UCS-4 garray
private
Définition à la ligne 918 du fichier idna_convert.class.php.
Références _error().
Référencé par encode().
idna_convert::_ucs4_to_ucs4_string | ( | $input | ) |
Convert UCS-4 array into UCS-4 string
private
Définition à la ligne 902 du fichier idna_convert.class.php.
Référencé par decode().
idna_convert::_ucs4_to_utf8 | ( | $input | ) |
Convert UCS-4 string into UTF-8 string See _utf8_to_ucs4() for details private
Définition à la ligne 865 du fichier idna_convert.class.php.
Références _error().
Référencé par _decode(), et encode().
idna_convert::_utf8_to_ucs4 | ( | $input | ) |
This converts an UTF-8 encoded string to its UCS-4 representation By talking about UCS-4 "strings" we mean arrays of 32bit integers representing each of the "chars". This is due to PHP not being able to handle strings with bit depth different from 8. This apllies to the reverse method _ucs4_to_utf8(), too. The following UTF-8 encodings are supported: bytes bits representation 1 7 0xxxxxxx 2 11 110xxxxx 10xxxxxx 3 16 1110xxxx 10xxxxxx 10xxxxxx 4 21 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx 5 26 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 6 31 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx Each x represents a bit that can be used to store character data. The five and six byte sequences are part of Annex D of ISO/IEC 10646-1:2000 private
Définition à la ligne 788 du fichier idna_convert.class.php.
Références _error().
Référencé par _encode(), decode(), et encode().
idna_convert::decode | ( | $input, | |
$one_time_encoding = false |
|||
) |
Decode a given ACE domain name
string | Domain name (ACE string) [ |
string | Desired output encoding, see set_parameter] |
Définition à la ligne 165 du fichier idna_convert.class.php.
Références _decode(), _error(), _ucs4_to_ucs4_string(), et _utf8_to_ucs4().
idna_convert::encode | ( | $decoded, | |
$one_time_encoding = false |
|||
) |
Encode a given UTF-8 domain name
string | Domain name (UTF-8 or UCS-4) [ |
string | Desired input encoding, see set_parameter] |
Définition à la ligne 267 du fichier idna_convert.class.php.
Références _encode(), _error(), _ucs4_string_to_ucs4(), _ucs4_to_utf8(), et _utf8_to_ucs4().
idna_convert::get_last_error | ( | ) |
Use this method to get the last error ocurred
void |
Définition à la ligne 351 du fichier idna_convert.class.php.
Références $_error.
idna_convert::idna_convert | ( | $options = false | ) |
Définition à la ligne 94 du fichier idna_convert.class.php.
Références $_tcount, et set_parameter().
idna_convert::set_parameter | ( | $option, | |
$value = false |
|||
) |
Sets a new option value. Available options and values: [encoding - Use either UTF-8, UCS4 as array or UCS4 as string as input ('utf8' for UTF-8, 'ucs4_string' and 'ucs4_array' respectively for UCS4); The output is always UTF-8] [overlong - Unicode does not allow unnecessarily long encodings of chars, to allow this, set this parameter to true, else to false; default is false.] [strict - true: strict mode, good for registration purposes - Causes errors on failures; false: loose mode, ideal for "wildlife" applications by silently ignoring errors and returning the original input instead
mixed | Parameter to set (string: single parameter; array of Parameter => Value pairs) |
string | Value to use (if parameter 1 is a string) |
Définition à la ligne 125 du fichier idna_convert.class.php.
Références _error().
Référencé par idna_convert().
idna_convert::$_allow_overlong = false |
Définition à la ligne 90 du fichier idna_convert.class.php.
idna_convert::$_api_encoding = 'utf8' |
Définition à la ligne 89 du fichier idna_convert.class.php.
idna_convert::$_base = 36 |
Définition à la ligne 69 du fichier idna_convert.class.php.
Référencé par _adapt(), _decode(), _decode_digit(), et _encode().
idna_convert::$_damp = 700 |
Définition à la ligne 73 du fichier idna_convert.class.php.
idna_convert::$_error = false |
Définition à la ligne 85 du fichier idna_convert.class.php.
Référencé par get_last_error().
idna_convert::$_initial_bias = 72 |
Définition à la ligne 74 du fichier idna_convert.class.php.
idna_convert::$_initial_n = 0x80 |
Définition à la ligne 75 du fichier idna_convert.class.php.
idna_convert::$_invalid_ucs = 0x80000000 |
Définition à la ligne 67 du fichier idna_convert.class.php.
idna_convert::$_lbase = 0x1100 |
Définition à la ligne 77 du fichier idna_convert.class.php.
Référencé par _hangul_compose().
idna_convert::$_lcount = 19 |
Définition à la ligne 80 du fichier idna_convert.class.php.
idna_convert::$_max_ucs = 0x10FFFF |
Définition à la ligne 68 du fichier idna_convert.class.php.
idna_convert::$_ncount = 588 |
Définition à la ligne 83 du fichier idna_convert.class.php.
idna_convert::$_punycode_prefix = 'xn--' |
Définition à la ligne 66 du fichier idna_convert.class.php.
idna_convert::$_sbase = 0xAC00 |
Définition à la ligne 76 du fichier idna_convert.class.php.
Référencé par _hangul_compose().
idna_convert::$_scount = 11172 |
Définition à la ligne 84 du fichier idna_convert.class.php.
idna_convert::$_skew = 38 |
Définition à la ligne 72 du fichier idna_convert.class.php.
idna_convert::$_strict_mode = false |
Définition à la ligne 91 du fichier idna_convert.class.php.
idna_convert::$_tbase = 0x11A7 |
Définition à la ligne 79 du fichier idna_convert.class.php.
Référencé par _hangul_compose().
idna_convert::$_tcount = 28 |
Définition à la ligne 82 du fichier idna_convert.class.php.
Référencé par _hangul_compose(), _hangul_decompose(), et idna_convert().
idna_convert::$_tmax = 26 |
Définition à la ligne 71 du fichier idna_convert.class.php.
idna_convert::$_tmin = 1 |
Définition à la ligne 70 du fichier idna_convert.class.php.
Référencé par _adapt().
idna_convert::$_vbase = 0x1161 |
Définition à la ligne 78 du fichier idna_convert.class.php.
Référencé par _hangul_compose().
idna_convert::$_vcount = 21 |
Définition à la ligne 81 du fichier idna_convert.class.php.
idna_convert::$NP = array() |
Définition à la ligne 63 du fichier idna_convert.class.php.