我有3个文件,每个文件都在不同的文件夹中..
A.php,B.php,C.css。
首先,我使用A.php导入B.php
a.php只会:
include ('second_folder/B.php');
第二,我使用B.php 导入C.css:
include ('second_folder/third_folder/B.php');
正如你所看到的,我不得不写下“second_folder”,因为父文件是A.php。
我怎样才能将A.php中的“育儿”传递给B.php,我可以像这样写出B.php:
include ('third_folder/B.php');
提前谢谢。
答案 0 :(得分:1)
http://php.net/manual/en/function.set-include-path.php
不要忘记http://php.net/manual/en/function.restore-include-path.php
示例:
set_include_path(get_include_path() . PATH_SEPARATOR . 'second_folder');