Searched refs:utf8_encode (Results 1 – 17 of 17) sorted by relevance
/PHP-7.3/ext/standard/tests/strings/ |
H A D | utf8_encode_error.phpt | 2 Test utf8_encode() function : error conditions 5 /* Prototype : proto string utf8_encode(string data) 11 echo "*** Testing utf8_encode() : error conditions ***\n"; 14 echo "\n-- Testing utf8_encode() function with Zero arguments --\n"; 15 var_dump( utf8_encode() ); 17 //Test utf8_encode with one more than the expected number of arguments 21 var_dump( utf8_encode($data, $extra_arg) ); 26 *** Testing utf8_encode() : error conditions *** 28 -- Testing utf8_encode() function with Zero arguments -- 30 Warning: utf8_encode() expects exactly 1 parameter, 0 given in %s on line %d [all …]
|
H A D | utf8_encode_variation1.phpt | 2 Test utf8_encode() function : usage variations - <type here specifics of this variation> 5 /* Prototype : proto string utf8_encode(string data) 11 echo "*** Testing utf8_encode() : usage variations ***\n"; 77 var_dump( utf8_encode($value) ); 83 *** Testing utf8_encode() : usage variations *** 114 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 119 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 124 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 129 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 134 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d
|
H A D | bug20934.phpt | 5 $str = utf8_encode("\xe0\xe1");
|
H A D | utf8.phpt | 5 printf("%s -> %s\n", urlencode("�"), urlencode(utf8_encode("�")));
|
/PHP-7.3/ext/soap/tests/interop/Round2/Base/ |
H A D | r2_base_005p.phpt | 5 <?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?> 9 $client->__soapCall("echoString", array(utf8_encode('ỗÈéóÒ₧⅜ỗỸ')), array("soapaction"=>"http://soap…
|
H A D | r2_base_005w.phpt | 5 <?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?> 11 $client->echoString(utf8_encode('ỗÈéóÒ₧⅜ỗỸ'));
|
H A D | r2_base_005s.phpt | 5 <?php if (!function_exists('utf8_encode')) die('skip utf8_encode() not available'); ?> 9 $client->__soapCall("echoString", array(new SoapParam(new SoapVar(utf8_encode('ỗÈéóÒ₧⅜ỗỸ'),XSD_STRI…
|
/PHP-7.3/ext/xmlrpc/libxmlrpc/ |
H A D | encodings.h | 43 char* utf8_encode(const char *s, int len, int *newlen, ENCODING_ID encoding);
|
H A D | encodings.c | 103 char* utf8_encode(const char *s, int len, int *newlen, const char* encoding) in utf8_encode() function
|
/PHP-7.3/ext/soap/tests/bugs/ |
H A D | bug28969.phpt | 9 // return utf8_encode("��");
|
/PHP-7.3/ext/xml/ |
H A D | php_xml.h | 133 PHP_FUNCTION(utf8_encode);
|
/PHP-7.3/ext/soap/interop/ |
H A D | client_round2_params.php | 173 $test = new SOAP_Test('echoString(utf-8)', array('inputString' => utf8_encode('ỗÈéóÒ₧⅜ỗỸ'))); 176 …t('echoString(utf-8)', array('inputString' => soap_value('inputString',utf8_encode('ỗÈéóÒ₧⅜ỗỸ'),XS…
|
/PHP-7.3/ext/standard/ |
H A D | php_string.h | 92 PHP_FUNCTION(utf8_encode);
|
H A D | basic_functions.c | 2805 PHP_FE(utf8_encode, arginfo_utf8_encode)
|
H A D | string.c | 6334 PHP_FUNCTION(utf8_encode) argument
|
/PHP-7.3/ext/dom/tests/ |
H A D | bug76738.phpt | 21 $content = utf8_encode($content);
|
/PHP-7.3/ |
H A D | NEWS | 2645 . Moved utf8_encode() and utf8_decode() to the Standard extension. (Andrea)
|
Completed in 65 milliseconds