Searched refs:decoded (Results 1 – 19 of 19) sorted by relevance
/php-src/ext/iconv/tests/ |
H A D | bug52941.phpt | 15 $decoded = iconv_mime_decode_headers($headers, ICONV_MIME_DECODE_CONTINUE_ON_ERROR, 'UTF-8'); 17 var_dump($decoded['From']); 18 var_dump($decoded['Subject']); 19 var_dump($decoded['X-Foo']); 20 var_dump($decoded['X-Bar']); 21 var_dump($decoded['To']); 25 var_dump($decoded['From']); 26 var_dump($decoded['Subject']); 27 var_dump($decoded['X-Foo']); 28 var_dump($decoded['X-Bar']); [all …]
|
H A D | bug68180.phpt | 8 $decoded = iconv_mime_decode($original, ICONV_MIME_DECODE_STRICT, 'utf-8'); 9 var_dump($decoded);
|
/php-src/ext/session/tests/ |
H A D | 029.phpt | 19 Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on … 21 Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on …
|
H A D | session_decode_error3.phpt | 25 Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on …
|
H A D | session_decode_variation3.phpt | 47 Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on …
|
/php-src/ext/mbstring/tests/ |
H A D | uuencode_encoding.phpt | 33 $decoded = mb_convert_encoding($encoded, '8bit', 'UUENCODE'); 34 if ($data !== $decoded) 35 …nd-trip failed! Expected " . bin2hex($data) . " to round-trip; actually got " . bin2hex($decoded));
|
H A D | mb_decode_numericentity_large_ints.phpt | 44 // that the entity could not be successfully decoded, so if the entity decoded successfully to
|
H A D | htmlent.phpt | 23 // @... are must be decoded on input these are not reencoded on output.
|
/php-src/ext/json/tests/ |
H A D | bug68546.phpt | 19 string(36) "The decoded property name is invalid"
|
/php-src/ext/xml/tests/ |
H A D | bug26528.phpt | 2 Bug #26528 (HTML entities are not being decoded)
|
/php-src/tests/strings/ |
H A D | 001.phpt | 105 $decoded = rawurldecode($correct); 106 if ($decoded == $raw) { 125 $decoded = urldecode($correct); 126 if ($decoded == $raw) {
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug38067.phpt | 2 Bug #38067 (Parameters are not decoded from utf-8 when using encoding option)
|
H A D | bug38004.phpt | 2 Bug #38004 (Parameters in SoapServer are decoded twice)
|
/php-src/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_utf8.c | 481 uint32_t decoded = ((c & 0xF) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F); in mb_utf8_to_wchar() local 482 ZEND_ASSERT(decoded >= 0x800); /* Not an overlong code unit */ in mb_utf8_to_wchar() 483 …ZEND_ASSERT(decoded < 0xD800 || decoded > 0xDFFF); /* U+D800-DFFF are reserved, illegal code point… in mb_utf8_to_wchar() 484 *out++ = decoded; in mb_utf8_to_wchar() 513 uint32_t decoded = ((c & 0x7) << 18) | ((c2 & 0x3F) << 12) | ((c3 & 0x3F) << 6) | (c4 & 0x3F); in mb_utf8_to_wchar() local 514 ZEND_ASSERT(decoded >= 0x10000); /* Not an overlong code unit */ in mb_utf8_to_wchar() 515 *out++ = decoded; in mb_utf8_to_wchar()
|
/php-src/ext/opcache/tests/jit/ |
H A D | bug81249.phpt | 124 // $bytes array should be decoded to U+2D8, decimal 728
|
/php-src/ext/standard/libavifinfo/ |
H A D | PATENTS | 71 be decoded by a Decoder only to the extent it produces such a bitstream.
|
/php-src/ext/mbstring/ |
H A D | mbstring.c | 6602 int8_t decoded = decode_base64(c); in mime_header_decode_encoded_word() local 6603 if (decoded == -1) { in mime_header_decode_encoded_word() 6608 cache = (cache << 6) | (decoded & 0x3F); in mime_header_decode_encoded_word()
|
/php-src/ |
H A D | php.ini-development | 307 ; are decoded with unserialize, the data will remain the same.
|
H A D | php.ini-production | 307 ; are decoded with unserialize, the data will remain the same.
|
Completed in 58 milliseconds