blob: 87f04d50ca160411a26e72ab6e1350d598f7a54f (
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
Warning: Undefined variable $x in %s on line %d
|