mirror of
https://github.com/php/php-src.git
synced 2026-04-21 15:08:16 +02:00
27 lines
521 B
PHP
27 lines
521 B
PHP
--TEST--
|
|
test for mbstring script_encoding for flex unsafe encoding (Shift_JIS)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!in_array("zend.detect_unicode", array_keys(ini_get_all()))) {
|
|
die("skip Requires configure --enable-zend-multibyte option");
|
|
}
|
|
if (!extension_loaded("mbstring")) {
|
|
die("skip Requires mbstring extension");
|
|
}
|
|
?>
|
|
--INI--
|
|
zend.multibyte=1
|
|
zend.script_encoding=Shift_JIS
|
|
mbstring.internal_encoding=Shift_JIS
|
|
--FILE--
|
|
<?php
|
|
function —\Ž\”\($ˆø�”)
|
|
{
|
|
echo $ˆø�”;
|
|
}
|
|
|
|
—\Ž\”\("ƒhƒŒƒ~ƒtƒ@ƒ\");
|
|
?>
|
|
--EXPECT--
|
|
ƒhƒŒƒ~ƒtƒ@ƒ\
|