Searched refs:utf8_decode (Results 1 – 16 of 16) sorted by relevance
/PHP-5.4/ext/xml/tests/ |
H A D | utf8_decode_error.phpt | 2 Test utf8_decode() function : error conditions 11 /* Prototype : proto string utf8_decode(string data) 17 echo "*** Testing utf8_decode() : error conditions ***\n"; 20 echo "\n-- Testing utf8_decode() function with Zero arguments --\n"; 21 var_dump( utf8_decode() ); 23 //Test utf8_decode with one more than the expected number of arguments 27 var_dump( utf8_decode($data, $extra_arg) ); 32 *** Testing utf8_decode() : error conditions *** 34 -- Testing utf8_decode() function with Zero arguments -- 36 Warning: utf8_decode() expects exactly 1 parameter, 0 given in %s on line %d [all …]
|
H A D | utf8_decode_variation1.phpt | 2 Test utf8_decode() function : usage variations - different types for data 11 /* Prototype : proto string utf8_decode(string data) 17 echo "*** Testing utf8_decode() : usage variations ***\n"; 83 var_dump( utf8_decode($value) ); 89 *** Testing utf8_decode() : usage variations *** 120 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 125 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 130 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 135 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 140 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d
|
H A D | bug43957.phpt | 2 Bug #43957 (utf8_decode() bogus conversion on multibyte indicator near end of string) 10 echo utf8_decode('abc'.chr(0xe0));
|
H A D | bug49687.phpt | 2 Bug #49687 Several utf8_decode deficiencies and vulnerabilities 17 echo bin2hex(utf8_decode($t)), "\n";
|
H A D | xml006.phpt | 8 printf("%s <- %s\n", urlencode(utf8_decode(urldecode("%C3%A6"))), "%C3%A6");
|
/PHP-5.4/ext/standard/tests/strings/ |
H A D | bug20934.phpt | 5 if (!function_exists("utf8_encode") || !function_exists("utf8_decode")) { 6 die("SKIP Neither utf8_encode() nor utf8_decode() are available"); 12 var_dump(utf8_decode($str)); 13 var_dump(utf8_decode(htmlspecialchars($str, ENT_COMPAT, "UTF-8")));
|
/PHP-5.4/ext/openssl/tests/ |
H A D | 005.phpt | 6 if (!function_exists("utf8_decode")) die("skip"); 16 $cn = utf8_decode($out['CN']);
|
/PHP-5.4/ext/xmlrpc/libxmlrpc/ |
H A D | encodings.h | 44 char* utf8_decode(const char *s, int len, int *newlen, ENCODING_ID encoding);
|
H A D | encodings.c | 122 char* utf8_decode(const char *s, int len, int *newlen, const char* encoding) in utf8_decode() function
|
H A D | xml_element.c | 645 char* add_text = utf8_decode(s, len, &new_len, mydata->input_options->encoding); in _xmlrpc_charHandler()
|
/PHP-5.4/ext/json/ |
H A D | config.w32 | 8 ADD_SOURCES(configure_module_dirname, "JSON_parser.c utf8_decode.c", "json");
|
H A D | config.m4 | 12 PHP_NEW_EXTENSION(json, json.c utf8_decode.c JSON_parser.c, $ext_shared)
|
H A D | json.dsp | 107 SOURCE=.\utf8_decode.c 111 SOURCE=.\utf8_decode.h
|
/PHP-5.4/ext/xml/ |
H A D | php_xml.h | 133 PHP_FUNCTION(utf8_decode);
|
H A D | xml.c | 240 PHP_FE(utf8_decode, arginfo_utf8_decode) 1712 PHP_FUNCTION(utf8_decode) in PHP_FUNCTION() argument
|
/PHP-5.4/ |
H A D | NEWS | 3452 . Fixed bug #49687 (utf8_decode vulnerabilities and deficiencies in the number
|
Completed in 92 milliseconds