我在FileA.php中定义了这个函数
function readDirectory($aPath) {
$list = Array();
if(is_dir($aPath)) {
if ($dh = opendir($aPath)) {
while (($file = readdir($dh)) !== false) {
if(is_file("$aPath/$file") && $file != '.htaccess') {
$list[$file] = "$file";
}
}
closedir($dh);
}
}
sort($list, SORT_STRING);
return $list;
}
我在FileB.php中获取FileA.php included()
,然后在FileC.php中获取FileB.php included()
执行。但我明白了:
致命错误:在第2行的.folder / FileC.php中调用未定义的函数readDirectory()
无法弄清楚错误。