1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 15:38:49 +02:00
Files
archived-php-src/Zend/tests/globals_004.phpt
T
2020-07-10 21:05:28 +02:00

29 lines
372 B
PHP

--TEST--
globals in local scope - 3
--INI--
variables_order="egpcs"
--FILE--
<?php
function test() {
include __DIR__."/globals.inc";
}
test();
echo "Done\n";
?>
--EXPECTF--
bool(true)
bool(false)
string(5) "array"
int(%d)
string(%d) "%s"
Notice: Undefined array key "PHP_SELF" in %s on line %d
NULL
Warning: Undefined variable $_SERVER in %s on line %d
NULL
Done