Searched refs:utf8_encode (Results 1 – 15 of 15) sorted by relevance
/PHP-7.1/ext/xml/tests/ |
H A D | utf8_encode_error.phpt | 2 Test utf8_encode() function : error conditions 11 /* Prototype : proto string utf8_encode(string data) 17 echo "*** Testing utf8_encode() : error conditions ***\n"; 20 echo "\n-- Testing utf8_encode() function with Zero arguments --\n"; 21 var_dump( utf8_encode() ); 23 //Test utf8_encode with one more than the expected number of arguments 27 var_dump( utf8_encode($data, $extra_arg) ); 32 *** Testing utf8_encode() : error conditions *** 34 -- Testing utf8_encode() function with Zero arguments -- 36 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> 11 /* Prototype : proto string utf8_encode(string data) 17 echo "*** Testing utf8_encode() : usage variations ***\n"; 83 var_dump( utf8_encode($value) ); 89 *** Testing utf8_encode() : usage variations *** 120 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 125 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 130 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 135 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d 140 Warning: utf8_encode() expects parameter 1 to be string, array given in %s on line %d
|
H A D | xml006.phpt | 7 printf("%s -> %s\n", urlencode("�"), urlencode(utf8_encode("�")));
|
/PHP-7.1/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"); 11 $str = utf8_encode("\xe0\xe1");
|
/PHP-7.1/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.1/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 | 117 char* utf8_encode(const char *s, int len, int *newlen, const char* encoding) in utf8_encode() function
|
/PHP-7.1/ext/xmlwriter/examples/ |
H A D | xmlwriter_mem.php | 18 xmlwriter_text($xw, utf8_encode('This is a sample text, ä'));
|
H A D | xmlwriter_file.php | 22 xmlwriter_text($xw, utf8_encode('This is a sample text, ä'));
|
/PHP-7.1/ext/soap/tests/bugs/ |
H A D | bug28969.phpt | 9 // return utf8_encode("��");
|
/PHP-7.1/ext/xml/ |
H A D | php_xml.h | 135 PHP_FUNCTION(utf8_encode);
|
H A D | xml.c | 246 PHP_FE(utf8_encode, arginfo_utf8_encode) 1677 PHP_FUNCTION(utf8_encode) in PHP_FUNCTION() argument
|
/PHP-7.1/ext/soap/interop/ |
H A D | client_round2_params.php | 176 $test = new SOAP_Test('echoString(utf-8)', array('inputString' => utf8_encode('ỗÈéóÒ₧⅜ỗỸ'))); 179 …t('echoString(utf-8)', array('inputString' => soap_value('inputString',utf8_encode('ỗÈéóÒ₧⅜ỗỸ'),XS…
|
Completed in 27 milliseconds