mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
14 lines
185 B
PHP
14 lines
185 B
PHP
--TEST--
|
|
unset() CV 1 (unset() global variable)
|
|
--FILE--
|
|
<?php
|
|
$x = "ok\n";
|
|
echo $x;
|
|
unset($x);
|
|
echo $x;
|
|
?>
|
|
--EXPECTF--
|
|
ok
|
|
|
|
Notice: Undefined variable: x in %sunset_cv01.php on line %d
|