mirror of
https://github.com/php/php-src.git
synced 2025-01-08 03:54:29 +08:00
29 lines
375 B
PHP
29 lines
375 B
PHP
--TEST--
|
|
globals in local scope - 3
|
|
--INI--
|
|
variables_order="egpcs"
|
|
--FILE--
|
|
<?php
|
|
|
|
function test() {
|
|
include dirname(__FILE__)."/globals.inc";
|
|
}
|
|
|
|
test();
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|
|
bool(false)
|
|
string(5) "array"
|
|
int(%d)
|
|
string(%d) "%s"
|
|
|
|
Notice: Undefined index: PHP_SELF in %s on line %d
|
|
NULL
|
|
|
|
Notice: Undefined variable: _SERVER in %s on line %d
|
|
NULL
|
|
Done
|