我收到此错误: 警告:require_once(C:\ xampp \ htdocs / models / config.php):无法打开流:第3行的C:\ xampp \ htdocs \ venture \ html \ admin \ index.php中没有此类文件或目录
以下是出现错误的代码:
$root = realpath($_SERVER["DOCUMENT_ROOT"]);
require_once($root . "/models/config.php");
答案 0 :(得分:1)
你需要改变斜线
$root = realpath(str_replace('\\', '/', $_SERVER['DOCUMENT_ROOT']) );
require_once($root . "/models/config.php");