php执行了header("Location: index.php");后面程序会继续执行吗?
php文件运行的时候,虽然在脚本里有header("Location: index.php");页面跳转到另一个脚本,但是这个脚本的进程要执行完,所以header("Location: index.php");后面的代码一定会执行,如果要终止脚本运行,可以加exit(); 或者die();脚本就不会继续执行了。
php文件运行的时候,虽然在脚本里有header("Location: index.php");页面跳转到另一个脚本,但是这个脚本的进程要执行完,所以header("Location: index.php");后面的代码一定会执行,如果要终止脚本运行,可以加exit(); 或者die();脚本就不会继续执行了。