|
static | iconv ($inCharset, $outCharset, $str) |
|
static | iconv_mime_decode_headers ($str, $mode=0, $charset=null) |
|
static | iconv_mime_decode ($str, $mode=0, $charset=null) |
|
static | iconv_get_encoding ($type='all') |
|
static | iconv_set_encoding ($type, $charset) |
|
static | iconv_mime_encode ($fieldName, $fieldValue, $pref=null) |
|
static | iconv_strlen ($s, $encoding=null) |
|
static | strlen1 ($s, $encoding=null) |
|
static | strlen2 ($s, $encoding=null) |
|
static | iconv_strpos ($haystack, $needle, $offset=0, $encoding=null) |
|
static | iconv_strrpos ($haystack, $needle, $encoding=null) |
|
static | iconv_substr ($s, $start, $length=2147483647, $encoding=null) |
|
iconv implementation in pure PHP, UTF-8 centric.
Implemented:
- iconv - Convert string to requested character encoding
- iconv_mime_decode - Decodes a MIME header field
- iconv_mime_decode_headers - Decodes multiple MIME header fields at once
- iconv_get_encoding - Retrieve internal configuration variables of iconv extension
- iconv_set_encoding - Set current setting for character encoding conversion
- iconv_mime_encode - Composes a MIME header field
- iconv_strlen - Returns the character count of string
- iconv_strpos - Finds position of first occurrence of a needle within a haystack
- iconv_strrpos - Finds the last occurrence of a needle within a haystack
- iconv_substr - Cut out part of a string
Charsets available for conversion are defined by files in the charset/ directory and by Iconv::$alias below. You're welcome to send back any addition you make.
- Auteur
- Nicolas Grekas p@tch.nosp@m.work.nosp@m..com