php-src/Zend/tests/unset_cv10.phpt
2020-03-31 13:02:32 +02:00

17 lines
273 B
PHP

--TEST--
unset() CV 10 (unset() of global variable in ArrayObject::offsetUnset($GLOBALS))
--FILE--
<?php
$a = new ArrayObject($GLOBALS);
$x = "ok\n";
echo $x;
$a->offsetUnset('x');
echo $x;
echo "ok\n";
?>
--EXPECTF--
ok
Warning: Undefined variable $x in %s on line %d
ok