作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 file.php
位于www.example.com/folder/
.
我希望该文件对位于 www.example.com/include/
中的文件使用包含命令.
如果我简单地使用:
<?php include './include/footer.php';?>
它不起作用,因为它会尝试在物理文件夹中搜索 file.php
位于,而我需要它来引用我的域的根目录。
最佳答案
使用 $_SERVER['DOCUMENT_ROOT']
这里是 server documentation .
The document root directory under which the current script is executing, as defined in the server's configuration file.
合起来应该是这样的:
include $_SERVER['DOCUMENT_ROOT'] . "/include/footer.php";
关于php - 如何从域的根目录中包含 PHP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35659493/
我是一名优秀的程序员,十分优秀!