1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/mbstring/tests/ini_language.phpt
Nikita Popov 39131219e8 Migrate more SKIPIF -> EXTENSIONS (#7139)
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
2021-06-11 12:58:44 +02:00

16 lines
260 B
PHP

--TEST--
mbstring.language bug
--EXTENSIONS--
mbstring
--INI--
internal_encoding=Shift_JIS
mbstring.language=Japanese
--FILE--
<?php
var_dump(ini_get('internal_encoding'));
var_dump(mb_internal_encoding());
?>
--EXPECT--
string(9) "Shift_JIS"
string(4) "SJIS"