如何从更高的父目录中包含文件?

时间:2016-03-02 05:27:02

标签: php

如何在//This is my index page include_once "./../../../idea/file.html"; 文件中包含较高父目录中的文件?

代码:

n will not be greater than 1.

项目结构

enter image description here

2 个答案:

答案 0 :(得分:1)

你似乎错过了一个点。你需要为你想要的每个深度使用一个include_once "../../../../idea/file.html";

尝试:

.carousel-caption {
right: 20%;
left: auto;
padding-bottom: 30px;
width: 250px;
background: rgba(0,0,0,0.5);
top: 50%;
border-radius: 18px;
bottom: auto;
}

答案 1 :(得分:0)

假设您的基本路径是响应目录。您可以包含以下任何文件:

include_once(BASE_PATH."idea/file.html");