set_include_path(get_include_path().PATH_SEPARATOR.'czy'); set_include_path(get_include_path().PATH_SEPARATOR.'bbs'); include ('newfile39.php'); include ('newfile.php'); 只有本文件夹下的函数被调用,bbs文件夹下的文件没有引入到本文件中。 运行显示: Fatal error: Call to undefined function test() in D:\phpStudy\WWW\czy\newfile44.php 求解答!
你的cyz目录和bbs目录可能未处于同一个目录层级下,所以导致引入失败。建议跟着老师的步骤一步步操作,看清老师的文件夹的存放位置。
试一下
set_include_path(get_include_path().PATH_SEPARATOR.'./bbs');
你的bbs文件夹下的文件没有引入吧