exit()被打印而不是停止网页

时间:2015-07-31 05:58:20

标签: php include exit exit-code php-include

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.phpset.php类似,唯一的区别是exit()末尾的set_then_exit.php

0 个答案:

没有答案