Php我想从另一个包含文件中删除包含的文件

时间:2015-06-16 11:48:58

标签: php include

我想从另一个包含文件

中删除包含的文件

file1.php:

<?php
 include("file2.php");
?>

file2.php:

<?php
include("anotherfile.php");
?>

我不想包含anotherfile.php,但我只想要 file2.php请帮帮我

1 个答案:

答案 0 :(得分:0)

你可以让第二个包括conditionnal

File1.php

$includesAnotherFile = false;
include("file2.php");

File2.php

if (!isset($includesAnotherFile ) || $includesAnotherFile)
{
    include("anotherfile.php");
}