mirror of
https://github.com/php/php-src.git
synced 2026-04-22 07:28:09 +02:00
e9f783fcdd
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
20 lines
541 B
PHP
20 lines
541 B
PHP
--TEST--
|
|
Bug #60494 (iconv_mime_decode does ignore special characters)
|
|
--EXTENSIONS--
|
|
iconv
|
|
--FILE--
|
|
<?php
|
|
var_dump(iconv_mime_decode('ä'));
|
|
var_dump(iconv_mime_decode('ö'));
|
|
var_dump(iconv_mime_decode('ß'));
|
|
?>
|
|
--EXPECTF--
|
|
Notice: iconv_mime_decode(): Detected an illegal character in input string in %s on line %d
|
|
bool(false)
|
|
|
|
Notice: iconv_mime_decode(): Detected an illegal character in input string in %s on line %d
|
|
bool(false)
|
|
|
|
Notice: iconv_mime_decode(): Detected an illegal character in input string in %s on line %d
|
|
bool(false)
|