php-src/Zend/tests/unset_cv08.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

16 lines
197 B
PHP

--TEST--
unset() CV 8 (unset() of global variable in array_unique($GLOBALS))
--FILE--
<?php
$a = "ok\n";
$b = "ok\n";
@array_unique($GLOBALS);
echo $a;
echo $b;
echo "ok\n";
?>
--EXPECT--
ok
ok
ok