Home
last modified time | relevance | path

Searched refs:decoded (Results 1 – 19 of 19) sorted by relevance

/php-src/ext/iconv/tests/
H A Dbug52941.phpt15 $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 Dbug68180.phpt8 $decoded = iconv_mime_decode($original, ICONV_MIME_DECODE_STRICT, 'utf-8');
9 var_dump($decoded);
/php-src/ext/session/tests/
H A D029.phpt19 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 Dsession_decode_error3.phpt25 Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on …
H A Dsession_decode_variation3.phpt47 Warning: session_decode(): Session data cannot be decoded when there is no active session in %s on …
/php-src/ext/mbstring/tests/
H A Duuencode_encoding.phpt33 $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 Dmb_decode_numericentity_large_ints.phpt44 // that the entity could not be successfully decoded, so if the entity decoded successfully to
H A Dhtmlent.phpt23 // &#64... are must be decoded on input these are not reencoded on output.
/php-src/ext/json/tests/
H A Dbug68546.phpt19 string(36) "The decoded property name is invalid"
/php-src/ext/xml/tests/
H A Dbug26528.phpt2 Bug #26528 (HTML entities are not being decoded)
/php-src/tests/strings/
H A D001.phpt105 $decoded = rawurldecode($correct);
106 if ($decoded == $raw) {
125 $decoded = urldecode($correct);
126 if ($decoded == $raw) {
/php-src/ext/soap/tests/bugs/
H A Dbug38067.phpt2 Bug #38067 (Parameters are not decoded from utf-8 when using encoding option)
H A Dbug38004.phpt2 Bug #38004 (Parameters in SoapServer are decoded twice)
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf8.c481 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 Dbug81249.phpt124 // $bytes array should be decoded to U+2D8, decimal 728
/php-src/ext/standard/libavifinfo/
H A DPATENTS71 be decoded by a Decoder only to the extent it produces such a bitstream.
/php-src/ext/mbstring/
H A Dmbstring.c6572 int8_t decoded = decode_base64(c); in mime_header_decode_encoded_word() local
6573 if (decoded == -1) { in mime_header_decode_encoded_word()
6578 cache = (cache << 6) | (decoded & 0x3F); in mime_header_decode_encoded_word()
/php-src/
H A Dphp.ini-development317 ; are decoded with unserialize, the data will remain the same.
H A Dphp.ini-production317 ; are decoded with unserialize, the data will remain the same.

Completed in 78 milliseconds