mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
12 lines
265 B
PHP
12 lines
265 B
PHP
--TEST--
|
|
Bug #66873 - crash in UConverter with invalid encoding
|
|
--SKIPIF--
|
|
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
|
|
--FILE--
|
|
<?php
|
|
$o = new UConverter(1, 1);
|
|
$o->toUCallback(1, 1, 1, $b);
|
|
var_dump($o->getErrorCode());
|
|
--EXPECT--
|
|
int(27)
|