PHP Function List
unicode_decode doesn't exist. Closest matches:
- iconv_mime_decode
- convert_uudecode
- zlib_decode
- bson_decode
- json_decode
- utf8_decode
- urldecode
- http_chunked_decode
- quoted_printable_decode
- base64_decode
- xmlrpc_decode
- domnode_replace_node
- domnode_dump_node
- session_decode
- bbcode_destroy
- iconv_mime_decode_headers
- domnode_clone_node
- domnode_set_content
- domnode_parent_node
- domnode_child_nodes
Site Search Results
-
utf8_decode (PHP 4, PHP 5) utf8_decode — Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1
-
function unicode_decode($txt) { $txt = ereg_replace('%u0([[:alnum:]]{3})', '&#x\1;',$txt); $txt = ereg_replace('%([[:alnum:]]{2})', '&#x\1;',$txt);
-
utf8_decode (PHP 4, PHP 5) utf8_decode — Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1
-
function unicode_decode($txt) { $txt = ereg_replace('%u0([[:alnum:]]{3})', '&#x\1;',$txt); $txt = ereg_replace('%([[:alnum:]]{2})', '&#x\1;',$txt);
-
function unicode_decode ($str){ return preg_replace ( '#\\\u([0-9a-f]{4})#e', "unicode_value('\\1')", $str); } function unicode_value ($code) {
-
function unicode_decode($txt) { $txt = ereg_replace('%u0([[:alnum:]]{3})', '&#x\1;',$txt); $txt = ereg_replace('%([[:alnum:]]{2})', '&#x\1;',$txt);
-
function unicode_decode($txt) { $txt = ereg_replace('%u0([[:alnum:]]{3})', '&#x\1;',$txt); $txt = ereg_replace('%([[:alnum:]]{2})', '&#x\1;',$txt);
-
PHP 6 - Unicode Completion Statsunicode_decode: php-src/ext/unicode/unicode.c: unicode_encode: php-src/ext/unicode/unicode.c: unicode_set_error_mode: php-src/ext/unicode/unicode.c: unicode_set_subst_char
-
function unicode_decode ($str){ return preg_replace ( '#\\\u([0-9a-f]{4})#e', "unicode_value('\\1')", $str); } function unicode_value ($code) {

Other forms of search
To search the string "unicode_decode" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
