Searched refs:utf8_decode (Results 1 – 15 of 15) sorted by relevance
/PHP-7.3/ext/standard/tests/strings/ |
H A D | utf8_decode_error.phpt | 2 Test utf8_decode() function : error conditions 5 /* Prototype : proto string utf8_decode(string data) 11 echo "*** Testing utf8_decode() : error conditions ***\n"; 14 echo "\n-- Testing utf8_decode() function with Zero arguments --\n"; 15 var_dump( utf8_decode() ); 17 //Test utf8_decode with one more than the expected number of arguments 21 var_dump( utf8_decode($data, $extra_arg) ); 26 *** Testing utf8_decode() : error conditions *** 28 -- Testing utf8_decode() function with Zero arguments -- 30 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 5 /* Prototype : proto string utf8_decode(string data) 11 echo "*** Testing utf8_decode() : usage variations ***\n"; 77 var_dump( utf8_decode($value) ); 83 *** Testing utf8_decode() : usage variations *** 114 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 119 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 124 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 129 Warning: utf8_decode() expects parameter 1 to be string, array given in %s on line %d 134 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) 5 echo utf8_decode('abc'.chr(0xe0));
|
H A D | bug20934.phpt | 6 var_dump(utf8_decode($str)); 7 var_dump(utf8_decode(htmlspecialchars($str, ENT_COMPAT, "UTF-8")));
|
H A D | bug49687.phpt | 2 Bug #49687 Several utf8_decode deficiencies and vulnerabilities 12 echo bin2hex(utf8_decode($t)), "\n";
|
H A D | utf8.phpt | 6 printf("%s <- %s\n", urlencode(utf8_decode(urldecode("%C3%A6"))), "%C3%A6");
|
/PHP-7.3/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 | 109 char* utf8_decode(const char *s, int len, int *newlen, const char* encoding) in utf8_decode() function
|
H A D | xml_element.c | 642 char* add_text = utf8_decode(s, len, &new_len, mydata->input_options->encoding); in _xmlrpc_charHandler()
|
/PHP-7.3/ext/xml/ |
H A D | php_xml.h | 134 PHP_FUNCTION(utf8_decode);
|
/PHP-7.3/ext/standard/ |
H A D | php_string.h | 93 PHP_FUNCTION(utf8_decode);
|
H A D | basic_functions.c | 2806 PHP_FE(utf8_decode, arginfo_utf8_decode)
|
H A D | string.c | 6349 PHP_FUNCTION(utf8_decode) argument
|
/PHP-7.3/ext/dom/tests/ |
H A D | bug76738.phpt | 31 $content = utf8_decode($content);
|
/PHP-7.3/ |
H A D | NEWS | 2645 . Moved utf8_encode() and utf8_decode() to the Standard extension. (Andrea)
|
Completed in 43 milliseconds