mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
This is effectively removing ZPP tests, enabling warnings, and moving INI settings into the INI PHPT block
14 lines
237 B
PHP
14 lines
237 B
PHP
--TEST--
|
|
UConverter::getDestinationEncoding()
|
|
--CREDITS--
|
|
Andy McNeice - PHP Testfest 2017
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$c = new UConverter('UTF-7', 'ascii');
|
|
var_dump($c->getDestinationEncoding());
|
|
?>
|
|
--EXPECT--
|
|
string(5) "UTF-7"
|