是否有可能将 if 语句排除到两个不同的文件中?当我编写类似以下代码的内容时,它会给出一个解析错误:syntax error, unexpected end of file
. 显然,我总是必须关闭同一个包含文件中的 if 语句。有没有办法完成我想要的?
索引.php:
<?php
require "top.inc.php"; // opening the if statement
some code to execute if statement in top.inc.php is true
require "bottom.inc.php"; // closing the if statement
?>
顶部.inc.php:
<?php if (1 == 1) { ?>
底部.inc.php:
<?php } ?>