可能重复:
如何在函数中使用包含?
我有两个文件
inc.php 文件
<?php
$var1 = "foo";
$var1 .= "bar";
?>
test.php 文件
<?php
function getcontent($file) {
include ($file);
}
getcontent('inc.php');
echo $var1;
?>
当我运行 test.php 它给我输出错误
Notice: Undefined variable: var1 in \www\test.php on line 7
但是当我将我的 test.php 文件更改为此
<?php
include ('inc.php');
echo $var1;
?>
它的作品,并给我很好的输出
foobar