有点疑惑,请各位指点。
目录结构
D://root //根目录root
|-inc
| |-a.php//设置了set_include_path('D:/root');
| |-b.php
|
|_index.php
a.php为基本配置文件,代码如下:
<?php
set_include_path('D:/root');
require_once('b.php'); //问:为什么这地方不是 'inc/b.php',一打这个路径就出错。
?>
index.php代码
<?php
require_once 'inc/a.php';
……//其它代码
?>
POPMUISE
猛跑小猪