PHP Header用于页面跳转要注意的几个问题总结

2015-01-24信息快讯网

在PHP中用header("location:test.php")进行跳转要注意以下几点,有助于解决一些新手经常遇到的问题

1、location和“:”号间不能有空格,否则会出错。
2、在用header前不能有任何的输出。
3、header后的PHP代码还会被执行。
下面是和asp中重定向response.redirect的比较:
例1:
response.redirect "../test.asp"
header("location:../test.php");
两者区别:
asp的redirect函数可以在向客户发送头文件后起作用.

<html><head></head><body>
<%response.redirect "../test.asp"%>
</body></html>
查是php中下例代码会报错:
<html><head></head><body>
<?
header("location:../test.php");
?>
</body></html>
只能这样:
<?
header("location:../test.php");
?>
<html><head></head><body>...</body></html>
即header函数之前不能向客户发送任何数据.
例2:
asp中
<html><head></head><body>
<%
response.redirect "../a.asp"
response.redirect "../b.asp"
%>
</body></html>
结果是重定向a.asp文件.
php呢?
<?
header("location:../a.php");
header("location:../b.php");
?>
<html><head></head><body></body></html>
我们发现它重定向b.php.
原来在asp中执行redirect后不会再执行后面的代码.
而php在执行header后,继续执行下面的代码.
在这方面上php中的header重定向不如asp中的重定向.有时我们要重定向后,不能执行后面的代码:
一般地我们用
if(...)
header("...");
else
{
...
}
但是我们可以简单的用下面的方法:
if(...)
{ header("...");exit();}
还要注意的是,如果是用Unicode(UTF-8)编码时也会出现问题,需要调整缓存设置.
<[email=%@]%@LANGUAGE="VBSCRIPT[/email]" CODEPAGE="936"%>
<%if Request.ServerVariables("SERVER_NAME")="s.jb51.net" then
response.redirect "news/index.htm"
else%>
<%end if%>
<script>
var url = location.href;
if(url.indexOf('http://www.jb51.net/')!=-1)location.href='/index/index.htm';
if(url.indexOf('http://www.kanshule.com/')!=-1)location.href='/index1/index.htm';
if(url.indexOf('http://www.shouji17.com/')!=-1)location.href='/cn/index.asp';
if(url.indexOf('http://www.baidu.com/')!=-1)location.href='/cn/index.asp';
</script>
Apache 配置详解(最好的APACHE配置教程)
PHP中文URL编解码(urlencode()rawurlencode()
《Head First 设计模式》代码之PHP版(面向对象学习)第1/2页
php $_SERVER["REQUEST_URI"]获取值的通用解决方法
PHP XML error parsing SOAP payload on line 1
PHP中json_encode、json_decode与serialize、unserialize的性能测试分析
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
Discuz!下Memcache缓存实现方法
php UTF-8、Unicode和BOM问题
php 提速工具eAccelerator 配置参数详解
memcached 和 mysql 主从环境下php开发代码详解
php select,radio和checkbox默认选择的实现方法
Godaddy空间Zend Optimizer升级方法
php源码加密 仿微盾PHP加密专家(PHPCodeLock)
PHP 页面编码声明方法详解(header或meta)
php session_start()关于Cannot send session cache limiter - headers already sent错误解决方法
php利用header函数实现文件下载时直接提示保存
php header 详细使用说明与使用心得第1/2页
php优化及高效提速问题的实现方法第1/2页
smarty section简介与用法分析
PHP伪造referer实例代码
PHPMailer邮件类利用smtp.163.com发送邮件方法
php include,include_once,require,require_once
PHP define函数的使用说明
php-accelerator网站加速PHP缓冲的方法
PHP中$_SERVER的详细参数与说明
php include的妙用,实现路径加密
php array_merge下进行数组合并的代码
php header()函数使用说明
php utf-8转unicode的函数第1/2页
改变Apache端口等配置修改方法
WindowsXP中快速配置Apache+PHP5+Mysql
PHP中用header图片地址 简单隐藏图片源地址
php出现Cannot modify header information问题的解决方法大全
用header 发送cookie的php代码
header()函数使用说明
©2014-2024 dbsqp.com