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