/PHP-7.0/ext/iconv/tests/ |
H A D | bug51250.phpt | 2 Bug #51250 (iconv_mime_decode() does not ignore malformed Q-encoded words) 10 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?Q?*?= .", $m)); 14 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?B?Kg==?= .")); 15 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?Q?*?= .")); 20 string(23) "Legal encoded-word: * ." 21 string(23) "Legal encoded-word: * ." 22 string(24) "Illegal encoded-word: ." 23 string(23) "Illegal encoded-word: ." 24 string(23) "Legal encoded-word: * ." 25 string(23) "Legal encoded-word: * ." [all …]
|
H A D | iconv_basic.phpt | 27 echo "Expected EUC-JP encoded string in base64:\n"; 34 echo "Expected SJIS encoded string in base64:\n"; 41 echo "Expected UTF-8 encoded string in base64:\n"; 53 Expected EUC-JP encoded string in base64: 60 Expected SJIS encoded string in base64: 67 Expected UTF-8 encoded string in base64:
|
/PHP-7.0/ext/json/tests/ |
H A D | inf_nan_error.phpt | 2 An error is thrown when INF or NaN are encoded 34 string(34) "Inf and NaN cannot be JSON encoded" 37 string(34) "Inf and NaN cannot be JSON encoded" 42 string(34) "Inf and NaN cannot be JSON encoded" 45 string(34) "Inf and NaN cannot be JSON encoded"
|
H A D | bug54058.phpt | 34 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded" 36 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded" 38 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded" 40 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded"
|
H A D | bug61537.phpt | 29 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded" 32 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded" 36 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded" 39 string(56) "Malformed UTF-8 characters, possibly incorrectly encoded"
|
H A D | unsupported_type_error.phpt | 2 An error is thrown when an unsupported type is encoded
|
/PHP-7.0/ext/mbstring/tests/ |
H A D | mb_convert_encoding_basic.phpt | 28 echo "JIS encoded string in base64:\n"; 36 echo "EUC-JP encoded string in base64:\n"; 44 echo "SJIS encoded string in base64:\n"; 52 echo "UTF-8 encoded string in base64:\n"; 65 JIS encoded string in base64: 73 EUC-JP encoded string in base64: 81 SJIS encoded string in base64: 89 UTF-8 encoded string in base64:
|
H A D | zend_multibyte-05.phpt | 10 // forcefully interpret an UTF-8 encoded string as EUC-JP and then convert it 12 // valid EUC-encoded character "鴻".
|
H A D | zend_multibyte-09.phpt | 11 // forcefully interpret an UTF-8 encoded string as EUC-JP and then convert it 13 // valid EUC-encoded character "鴻".
|
H A D | mb_decode_mimeheader_basic.phpt | 11 * Description: Decodes the MIME "encoded-word" in the string 19 //the following encoded-words are identical and are UTF-8 Japanese.
|
H A D | mb_convert_variables.phpt | 15 // SJIS string (BASE64 encoded) 17 // JIS string (BASE64 encoded) 37 print(base64_encode($s)."\n"); // Converted to SJIS (base64 encoded) 42 print(base64_encode($s)."\n"); // Converted to JIS (base64 encoded)
|
H A D | mb_ereg_variation4.phpt | 23 //contains japanese characters, ASCII digits and different, UTF-8 encoded digits 53 * replicate a var dump of an array but outputted string values are base64 encoded
|
/PHP-7.0/ext/session/tests/ |
H A D | session_encode_variation7.phpt | 22 $encoded = session_encode(); 23 var_dump(base64_encode($encoded));
|
H A D | session_decode_variation4.phpt | 24 $encoded = "A2Zvb2k6MTIzNDU2Nzg5MDs="; 25 var_dump(session_decode(base64_decode($encoded)));
|
H A D | session_encode_variation8.phpt | 22 $encoded = session_encode(); 23 var_dump(base64_encode($encoded));
|
H A D | session_decode_variation3.phpt | 26 $encoded = "foo|i:1234567890;"; 27 var_dump(session_decode($encoded));
|
/PHP-7.0/ext/standard/ |
H A D | url_scanner_ex.c | 894 zend_string *encoded; in php_url_scanner_adapt_single_url() local 900 smart_str_appendl(&url_app, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); in php_url_scanner_adapt_single_url() 901 zend_string_free(encoded); in php_url_scanner_adapt_single_url() 908 smart_str_appendl(&url_app, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); in php_url_scanner_adapt_single_url() 909 zend_string_free(encoded); in php_url_scanner_adapt_single_url() 1013 zend_string *encoded; in php_url_scanner_add_var() local 1026 encoded = php_raw_url_encode(name, name_len); in php_url_scanner_add_var() 1027 smart_str_appendl(&sname, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); in php_url_scanner_add_var() 1028 zend_string_free(encoded); in php_url_scanner_add_var() 1030 smart_str_appendl(&svalue, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); in php_url_scanner_add_var() [all …]
|
H A D | url_scanner_ex.re | 411 zend_string *encoded; 417 smart_str_appendl(&url_app, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); 418 zend_string_free(encoded); 425 smart_str_appendl(&url_app, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); 426 zend_string_free(encoded); 530 zend_string *encoded; 543 encoded = php_raw_url_encode(name, name_len); 544 smart_str_appendl(&sname, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); 545 zend_string_free(encoded); 547 smart_str_appendl(&svalue, ZSTR_VAL(encoded), ZSTR_LEN(encoded)); [all …]
|
/PHP-7.0/ext/soap/tests/ |
H A D | classmap.wsdl | 39 …<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http… 42 …<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http… 48 …<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http… 51 …<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http…
|
/PHP-7.0/ext/imap/tests/ |
H A D | imap_base64_basic.phpt | 10 * Description: Decode BASE64 encoded text. 16 $str = b'This is an example string to be base 64 encoded';
|
/PHP-7.0/ext/standard/tests/strings/ |
H A D | bug21453.phpt | 2 Bug #21453 (handling of non-encoded <)
|
/PHP-7.0/tests/strings/ |
H A D | 001.phpt | 95 $encoded = rawurlencode($raw); 100 if ($encoded == $correct) { 115 $encoded = urlencode($raw); 120 if ($encoded == $correct) {
|
/PHP-7.0/tests/basic/ |
H A D | bug71273.phpt | 11 /* NOTE this file is required to be encoded in iso-8859-1 */
|
/PHP-7.0/ext/standard/tests/file/ |
H A D | bug43008.phpt | 2 Bug #43008 (php://filter uris ignore url encoded filternames and can't handle slashes)
|
/PHP-7.0/ext/filter/tests/ |
H A D | 008.phpt | 38 string(7) "encoded"
|