summaryrefslogtreecommitdiff
path: root/ext/intl/tests/uconverter_getDestinationEncoding.phpt
blob: 4b899bb01ccd2deca94f10ccf824c4f95cf68df7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
UConverter::getDestinationEncoding()
--CREDITS--
Andy McNeice - PHP Testfest 2017
--INI--
intl.error_level = E_WARNING
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
--FILE--
<?php
$c = new UConverter('UTF-7', 'ascii');
var_dump($c->getDestinationEncoding());
?>
--EXPECT--
string(5) "UTF-7"