mirror of
https://github.com/php/php-src.git
synced 2025-01-07 03:13:33 +08:00
18 lines
312 B
PHP
18 lines
312 B
PHP
--TEST--
|
|
zend multibyte (10)
|
|
--SKIPIF--
|
|
<?php
|
|
ini_set("mbstring.script_encoding","SJIS");
|
|
if (ini_set("mbstring.script_encoding","SJIS") != "SJIS") {
|
|
die("skip zend-multibyte is not available");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
declare(encoding="ISO-8859-15");
|
|
declare(encoding="ISO-8859-1");
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECTF--
|
|
ok
|