php执行了header("Location: index.php");后面程序会继续执行吗?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php执行了header("Location: index.php");后面程序会继续执行吗?相关的知识,希望对你有一定的参考价值。

如果在php里,执行了header("Location: index.php"); 那后面剩下的代码php会将其执行完吗?要是会的话,如何让其在header这里终端呢?

参考技术A 以下的代码是会往下执行的,你可以试试以下的代码。<?phpheader('Location: http://www.leakon.com/');$fp = fopen('header.txt', 'w+');fwrite($fp, date('Y-m-d H:i:s'));?>肯定会执行到fwrite函数的,打开header.txt文件,检查时间!可以用exit退出不执行以下代码。为了避免到处都是exit,可以写一个专门用作转向的函数,比如:<?phpfunction DoRedirect($strUrl) header('Location: ' . $strUrl); exit;?> 参考技术B 在这里就跳到index.php页面了。不会执行下面的代码了。

使用PHP发送简单电子邮件

nothing special :)
  1. function send_email($from,$to,$subject,$message){
  2. $header="From: <".$from.">
  3. ";
  4. $header.= 'MIME-Version: 1.0' . "
  5. ";
  6. $header.= 'Content-type: text/html; charset=iso-8859-1' . "
  7. ";
  8. $send_mail=mail($to,$subject,$message,$header);
  9. if(!$send_mail){ echo "ERROR"; }
  10. }

以上是关于php执行了header("Location: index.php");后面程序会继续执行吗?的主要内容,如果未能解决你的问题,请参考以下文章

从 header() 获取 PHP 内容类型

header("Location: url") 不重定向

php.net 手册中的 mail():“to”和“to-header”之间的区别

尝试使用 PHP Header("Location: ") 函数重定向

`header("Content-type:application/json");`的用法

使用 php header("Refresh") 重定向时的延迟 [重复]