mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
Now IS_BINRAY data type is removed and IS_STRING starts behave as IS_BINARY in unicode mode. IS_STRING is incompatible with IS_UNICODE, so ALL functions should be improved to support unicode mode.
22 lines
266 B
PHP
Executable File
22 lines
266 B
PHP
Executable File
--TEST--
|
|
Bug #29971 (variables_order behaviour)
|
|
--INI--
|
|
variables_order=GPC
|
|
--FILE--
|
|
<?php
|
|
var_dump($_ENV,$_SERVER);
|
|
var_dump(ini_get("variables_order"));
|
|
?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|
|
array(0) {
|
|
}
|
|
string(3) "GPC"
|
|
--UEXPECT--
|
|
array(0) {
|
|
}
|
|
array(0) {
|
|
}
|
|
unicode(3) "GPC"
|