我想要包含文件夹中的文件,虽然它在“LIB_PATH”中有效, php无法在P_C_PATH中找到任何文件,这是LIB_PATH中的子文件夹。
有什么想法吗?
defined('DS') ? null : define('DS', DIRECTORY_SEPARATOR);
defined('SITE_ROOT') ? null : define('SITE_ROOT', DS . 'home' . DS. 'servername' . DS . 'public_html'.DS.'site');
defined('LIB_PATH') ? null : define('LIB_PATH', SITE_ROOT.DS.'includes');
defined('P_C_PATH') ? null : define('P_C_PATH', LIB_PATH.DS.'project_classes');
foreach (glob(LIB_PATH.DS.'*.php') as $filename)
{
require_once($filename);
}
foreach (glob(P_C_PATH.DS.'*.php') as $classname)
{
require_once($classname);
}