如何退出当前的PHP脚本?
例如:
page.php文件
<?php
include('./other-page.php');
?>
<h4>this text always shows</h4>
其他-page.php文件
<?php
if($_GET['v'] == 'yes'){
//this is the code I want
}
?>
<h1>you did not say yes <!-- There is an entire html page here in the real program-->
</h1>
我想发生以下输出
?的index.php V =是:
<h4>this text always shows</h4>
的index.php?V =任何
<h1>you did not say yes <!-- There is an entire html page here in the real program-->
<h4>this text always shows</h4>
基本上,我想要一个退出当前文件的函数(跳到最后),但继续使用包含它的文件。
答案 0 :(得分:4)
您可以尝试将PHP代码放在HTML代码周围,如下所示:
<?php
if($_GET['v'] != 'yes'){
?>
<!-- ENTER HTML CODE HERE -->
<?php
}
?>
答案 1 :(得分:0)
在other-page.php
:
<?php
if($_GET['v'] != 'yes'){
echo '<h1>You did not say yes.</h1>';
}
?>
或者我误解了你的问题?基本上你可以重新组织不同的块以避免退出。