第一种方式:header()
header()函数的主要功能是将HTTP协议标头(header)输出到浏览器。
语法:
void header ( string $string [, bool $replace = true [, int $http_response_code ]] )
1
可选参数replace指明是替换前一条类似标头还是添加一条相同类型的标头,默认为替换。
第二个可选参数http_response_code强制将HTTP相应代码设为指定值。 header函数中Location类型的标头是一种特殊的header调用,常用来实现页面跳转。注意:1.location和“:”号间不能有空格,否则不会跳转。
<html>
<?php
/* This will give an error. Note the output
* above, which is before the header() call */
header('Location: http://www.example.com/');
exit;
?>
注意:
- header执行前不能有任何输出
- location和:之间不能有空格
- header后的php代码还会执行,所以需要注意使用exit;
第二种方式:meta标签
第三种方式:javascript
< ?php
$url = "http://www.baidu.com";
echo "< script language='javascript'
type='text/javascript'>";
echo "window.location.href='$url'";
echo "< /script>";
?>
第四种方式:form表单
<html>
<head>
<meta charset="utf-8">
</head>
<body onload="load()">
<form id="formCommit" action="http://www.baidu.com" method="post">
<input type="hidden" id = "req" name="req" value="<?php echo htmlspecialchars($param['resp']);?>" />
<input type="hidden" id = "sign" name="sign" value="<?php echo htmlspecialchars($param['sign']);?>" />
</form>
<script type="text/javascript">
function load(){
document.getElementById("formCommit").submit();
}
</script>
</body>
</html>
失落的羊2024-11-14 22:06
今日申请十年之约博客成员!
失落的羊2024-11-02 21:34
启用新的访问统计.
失落的羊2024-10-28 23:31
重新整理长篇连载栏目
失落的羊2024-10-19 10:35
构思公众号文章迁移计划
失落的羊2024-10-16 23:16
开始研究公众号后台自动回复