当然有所谓了
假设你有两个php (a.php b.php) 在同一级目录c下
a.php 中有一句 include "./b.php";
访问 /c/a.php?aaa=bbb 是正确的
而访问 /c/a.php/?aaa=bbb 将得到可爱的:
Warning: main(./b.php) [function.main]: failed to open stream: No such file or directory in ...
写成 include "b.php"; 就没问题
[ 本帖最后由 Mistruster 于 2007-8-17 11:16 AM 编辑 ] |