Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 000webhost 上建立了一个网站,但我在做包含时遇到了麻烦。该站点使用很多模板,例如 head.php、footer.php 等。这些模板存储在包含文件夹中,但问题是我需要从另一个子目录访问这些文件。我已经尝试过 DOCUMENT_ROOT,但我收到一条错误消息。当我尝试/public_html/includes etc时也会发生同样的情况。我该怎么做呢?
如果您当前的路径是/public_html/path,则使用../include/访问/public_html/include/
/public_html/path
../include/
/public_html/include/
如果您需要访问某个子文件夹(不在您现有的 webroot 下),请尝试使用符号链接...
或者
如果在您的 webroot 下,则在需要包含此文件的任何位置添加 include_once "includes/somefile.php"。这假定 include 是您的 Web 应用程序文件夹中的子目录。