blob: 221abe2d884c60beb8d91b4c823e5e5e10df4f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
unset() CV 3 (unset() global variable in included file)
--FILE--
<?php
$x = "ok\n";
echo $x;
include "unset.inc";
echo $x;
?>
--EXPECTF--
ok
Notice: Undefined variable: x in %sunset_cv03.php on line %d
|