mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
36935e42ea
Closes GH-5312
17 lines
228 B
PHP
17 lines
228 B
PHP
--TEST--
|
|
unset() CV 4 (unset() local variable in included file)
|
|
--FILE--
|
|
<?php
|
|
function f() {
|
|
$x = "ok\n";
|
|
echo $x;
|
|
include "unset.inc";
|
|
echo $x;
|
|
}
|
|
f();
|
|
?>
|
|
--EXPECTF--
|
|
ok
|
|
|
|
Warning: Undefined variable $x in %s on line %d
|