set_then_exit.php
<?php
$_SESSION['third_pen'] = 'unhanded';
//similar codes
exit();
notes.php
<?php
if(true)
{
include_once dirname(__FILE__)."/set_then_exit.php";
}
我试过
<?php
if(true)
{
include_once dirname(__FILE__)."/set.php";
exit();
}
是的,它有效。但是我想要干,所以我做了set_then_exit.php
并替换了set.php
。我有其他文件包含此代码段。令我惊讶的是exit()
只是打印出来。知道为什么会这样吗?
感谢。
更新 - 感谢您的评论+1。
set_then_exit.php
与set.php
类似,唯一的区别是exit()
末尾的set_then_exit.php
。