gpt4 book ai didi

php - 排除 if 语句?

转载 作者:搜寻专家 更新时间:2023-10-31 22:11:01 25 4
gpt4 key购买 nike

是否有可能以某种方式将 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
?>

top.inc.php:

<?php if (1 == 1) { ?>

底部.inc.php:

<?php } ?>

最佳答案

不,这是不可能的。每个 .php 文件都需要具有完整、有效的语法。 包含文件与复制和粘贴文件的内容并不完全相同。

关于php - 排除 if 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13006766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com