如何在PHP中的htdocs中包含文件夹中的文件?

时间:2016-04-11 03:58:53

标签: php directory

我到处寻找,但找不到任何东西。 我在htdocs的文件夹中有几个php文件夹。继承布局:

    htdocs(root folder)>widget_corp>
                                    public>(php file i need to include header.php in)
                                    includes>layouts>header.php

我试图在公共php文件中包含header.php,但使用include语句但它没有用。我应该在我的inlcude语句中包含header.php?

1 个答案:

答案 0 :(得分:0)

如果您的文件夹结构如下:

public -> example.php
includes -> layouts -> header.php

打开example.php时,您可以使用以下代码:

include "../includes/layours/header.php";

这将在您的header.php文件中包含PHP example.php文件。

注意: ../表示转到父目录,./表示当前目录,只是想在将来为您添加。