mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
16 lines
268 B
PHP
16 lines
268 B
PHP
--TEST--
|
|
UConverter::getSourceEncoding()
|
|
--CREDITS--
|
|
Andy McNeice - PHP Testfest 2017
|
|
--INI--
|
|
intl.error_level = E_WARNING
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$c = new UConverter('utf-32', 'ascii');
|
|
var_dump($c->getSourceEncoding());
|
|
?>
|
|
--EXPECT--
|
|
string(8) "US-ASCII"
|