Searched refs:iconv_mime_decode (Results 1 – 11 of 11) sorted by relevance
/PHP-8.3/ext/iconv/tests/ |
H A D | bug51250.phpt | 2 Bug #51250 (iconv_mime_decode() does not ignore malformed Q-encoded words) 9 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?B?Kg==?= .", $m)); 10 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?Q?*?= .", $m)); 11 var_dump(iconv_mime_decode("Illegal encoded-word: =?utf-8?B?".chr(0xA1)."?= .", $m)); 12 var_dump(iconv_mime_decode("Illegal encoded-word: =?utf-8?Q?".chr(0xA1)."?= .", $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?*?= .")); 16 var_dump(iconv_mime_decode("Illegal encoded-word: =?utf-8?B?".chr(0xA1)."?= .")); 17 var_dump(iconv_mime_decode("Illegal encoded-word: =?utf-8?Q?".chr(0xA1)."?= .")); 28 Notice: iconv_mime_decode(): Detected an illegal character in input string in %s on line %d
|
H A D | bug60494.phpt | 2 Bug #60494 (iconv_mime_decode does ignore special characters) 7 var_dump(iconv_mime_decode('ä')); 8 var_dump(iconv_mime_decode('ö')); 9 var_dump(iconv_mime_decode('ß')); 12 Notice: iconv_mime_decode(): Detected an illegal character in input string in %s on line %d 15 Notice: iconv_mime_decode(): Detected an illegal character in input string in %s on line %d 18 Notice: iconv_mime_decode(): Detected an illegal character in input string in %s on line %d
|
H A D | iconv_mime_decode-charset-length-cve-2007-4840.phpt | 2 iconv_mime_decode() charset parameter length checks (CVE-2007-4840) 8 var_dump(iconv_mime_decode("a", 0, $a)); 11 Warning: iconv_mime_decode(): Encoding parameter exceeds the maximum allowed length of 64 character…
|
H A D | gh7980.phpt | 2 Bug GH-7980 (Unexpected result for iconv_mime_decode) 8 var_dump(iconv_mime_decode($subject, ICONV_MIME_DECODE_STRICT, 'UTF-8'));
|
H A D | bug53304.phpt | 7 echo iconv_mime_decode('=?utf-8?Q?Nachricht_=c3=bcber_Kontaktformular_www.inexio.net?=', 0, 'UTF-8'… 8 echo iconv_mime_decode('=?utf-8?Q?Nachricht_=C3=BCber_Kontaktformular_www.inexio.net?=', 0, 'UTF-8'…
|
H A D | iconv_mime_decode.phpt | 2 iconv_mime_decode() 19 $result = iconv_mime_decode($header, $mode, "UTF-8"); 72 2: iconv_mime_decode(): Malformed string 78 2: iconv_mime_decode(): Malformed string
|
H A D | bug68180.phpt | 2 Bug #68180 (iconv_mime_decode can return extra characters in a header) 8 $decoded = iconv_mime_decode($original, ICONV_MIME_DECODE_STRICT, 'utf-8');
|
H A D | bug79200.phpt | 7 var_dump(iconv_mime_decode('=?windows-1258?Q?test=20test?=', 0, 'UTF-8'));
|
/PHP-8.3/ext/iconv/ |
H A D | iconv_arginfo.h | 68 ZEND_FUNCTION(iconv_mime_decode); 81 ZEND_FE(iconv_mime_decode, arginfo_iconv_mime_decode)
|
H A D | iconv.stub.php | 39 function iconv_mime_decode(string $string, int $mode = 0, ?string $encoding = null): string|false {} function
|
H A D | iconv.c | 2062 PHP_FUNCTION(iconv_mime_decode) in PHP_FUNCTION() argument
|
Completed in 19 milliseconds