标签: php include
当我在1/2/3 / file.php中包含一个文件时,我在<?php include ('../file2.php'); ?>文件中将它发送给:1/2/3/../file2.php
<?php include ('../file2.php'); ?>
1/2/3/../file2.php
它应该只发送给../file2.php。好像它没有使用../。该文件也存在。
../file2.php
答案 0 :(得分:1)
尝试使用__DIR__
__DIR__
<?php include (__DIR__.'../file2.php'); ?&GT;
<?php include (__DIR__.'../file2.php'); ?