我想从另一个包含文件
中删除包含的文件file1.php:
<?php
include("file2.php");
?>
file2.php:
<?php
include("anotherfile.php");
?>
我不想包含anotherfile.php,但我只想要 file2.php请帮帮我
答案 0 :(得分:0)
你可以让第二个包括conditionnal
File1.php
$includesAnotherFile = false;
include("file2.php");
File2.php
if (!isset($includesAnotherFile ) || $includesAnotherFile)
{
include("anotherfile.php");
}