我正在尝试在我的 php 脚本中动态包含。这是我的目录树:
-index.php
-sources/
--hello.php
--bye.php
在我index.php
的中,我包含了 hello.php:
include("sources/hello.php");
在我的hello.php
我还有另一个包括:
include("bye.php");
当我访问index.php
它时,它会抛出一个错误:
消息:require_once(bye.php) [function.require-once]:打开流失败:没有这样的文件或目录
有没有办法让它工作但没有绝对路径?因为路径可以从一个目录更改到另一个目录但保持结构:
-index.php
-sources/
--hello.php
--bye.php