mirror of
https://github.com/php/php-src.git
synced 2026-03-29 11:42:17 +02:00
16 lines
274 B
PHP
16 lines
274 B
PHP
--TEST--
|
|
UConverter::getDestinationEncoding()
|
|
--CREDITS--
|
|
Andy McNeice - PHP Testfest 2017
|
|
--INI--
|
|
intl.error_level = E_WARNING
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$c = new UConverter('UTF-7', 'ascii');
|
|
var_dump($c->getDestinationEncoding());
|
|
?>
|
|
--EXPECT--
|
|
string(5) "UTF-7"
|