我正在编写 PHP 代码,我有函数,在这个函数中我有包含,它工作正常但是如果我在这个包含文件中编写新代码,我会得到错误
错误:
Notice: Undefined variable: text
功能:
function inc($templateinc){
if(file_exists(Fsys.Fview.$templateinc)){
include Fsys.Fview.$templateinc;
}
else {
include Fsys.Fview.'errors/404.php';
}
}
我在哪里打印功能:
$text = "text";
inc("main/index.php");
主/index.php 文件:
echo $text;
我该如何解决这个问题?
谢谢