从子文件夹站点包含HTML

时间:2016-03-13 23:11:18

标签: php

我有两个站点,一个存储在服务器的根目录中,另一个位于子文件夹中,如下所示。

SITE ONE
ROOT/index.php
ROOT/assets/includes/header.php - contains styles and scripts

SITE TWO
ROOT/SUB-FOLDER/index.php
ROOT/SUB-FOLDER/assets/includes/header.php - contains styles and scripts

我正在使用PHP包含以便包含外部文件,其中第一个网站使用下面的代码正常工作,但第二个网站没有:

include($_SERVER["DOCUMENT_ROOT"] . '/assets/includes/header.php');

您能否帮助我为存储在SUB-FOLDER中的网站获得类似的结果。

提前致谢。

1 个答案:

答案 0 :(得分:0)

将包含链接更改为:

Returns the total amount of memory in the Java virtual machine. 
The value returned by this method may vary over time, depending on the 
host environment.

并添加

include('assets/includes/header.php'); 

标记到包含页面的头部解决了我的问题。