时间:2021-07-01 10:21:17 帮助过:2人阅读
定义了 defined('BASE_PATH') || define('BASE_PATH', __DIR__);
echo出是这个 /alidata/www/myali/includes
这个为什么加载不进来?require BASE_PATH.'/header.php';
定义了 defined('BASE_PATH') || define('BASE_PATH', __DIR__);
echo出是这个 /alidata/www/myali/includes
这个为什么加载不进来?require BASE_PATH.'/header.php';
没看懂你的问题。你是要把header.php
用include引入吗?那你应该这么写:
defined('BASE_PATH') || define('BASE_PATH', __DIR__);
require_once BASE_PATH.'/includes/header.php'