summaryrefslogtreecommitdiff
path: root/ext/intl/tests/uconverter___construct_error.phpt
blob: c5f20c6d6e1504b92efa4225686660bfce3d4fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Basic UConverter::convert() usage
--INI--
intl.error_level = E_WARNING
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
--FILE--
<?php
$c = new UConverter('utf-8', "\x80");
var_dump($c);
?>
--EXPECTF--
Warning: UConverter::__construct(): ucnv_open() returned error 4: U_FILE_ACCESS_ERROR in %s on line %d
object(UConverter)#%d (0) {
}