public_html > config.php
public_html > A > test_file.php
在 test_file.php 代码中
require_once("../config.php");
工作正常。在 Dreamweaver 中显示动态相关的文件(config.php)
public_html > includes > classes > allclasses.php
在 allclasses.php 代码中
require_once("../../config.php");
在 Dreamweaver 中显示动态相关的文件(config.php)
当我在 test_file.php 中包含 allclasses.php
require_once("../config.php");
require_once("../includes/classes/allclasses.php");
在 Dreamweaver 中显示动态相关的文件(config.php、allclasses.php)
test_file.php 停止工作并在浏览器上显示
Warning: require_once(../../config.php) [function.require-once]:
failed to open stream: No such file or directory in .....\public_html\includes\classes\allclasses.php on line 11
使用 xampp 作为开发服务器。