mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
12 lines
159 B
PHP
12 lines
159 B
PHP
--TEST--
|
|
Using array_keys() on $GLOBALS
|
|
--FILE--
|
|
<?php
|
|
|
|
$foo = 'bar';
|
|
unset($foo);
|
|
var_dump(in_array('foo', array_keys($GLOBALS)));
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|