mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08:00
14 lines
212 B
PHP
14 lines
212 B
PHP
--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
|