php-src/ext/iconv/tests/bug52211.phpt

14 lines
305 B
PHP

--TEST--
Bug #52211 (iconv() returns part of string on error)
--FILE--
<?php
$str = "PATHOLOGIES MÉDICO-CHIRUR. ADUL. PL";
$str_iconv = iconv('CP850', 'ISO-8859-1', $str );
var_dump($str_iconv);
?>
--EXPECTF--
Notice: iconv(): Detected an illegal character in input string in %s on line %d
bool(false)