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 :)
function send_email($from,$to,$subject,$message){ $header="From: <".$from."> "; $header.= 'MIME-Version: 1.0' . " "; $header.= 'Content-type: text/html; charset=iso-8859-1' . " "; if(!$send_mail){ echo "ERROR"; } }
以上是关于php执行了header("Location: index.php");后面程序会继续执行吗?的主要内容,如果未能解决你的问题,请参考以下文章
php.net 手册中的 mail():“to”和“to-header”之间的区别
尝试使用 PHP Header("Location: ") 函数重定向