php-实现页面跳转

29次阅读

共计 366 个字符,预计需要花费 1 分钟才能阅读完成。

在 php 中我们可以使用 header 方法来实现页面的跳转,如:

$url = 'http://www.wj0511.com';  
header("Location:" . $url);  
exit();

使用 header 方法可以实现页面跳转,但是只支持 get 跳转,当我们需要实现 post 跳转的话,使用 header 方法就无法实现了,这时候我们可以在 php 中执行 js 跳转来实现 post 跳转,如:

$url = 'http://www.wj0511.com';  
echo <<<EOT  
<form name='test' action='{$url}' method='POST'>  
</form>  
<script type='text/javascript'>  
    document.test.submit();  
</script>  
EOT;  
exit;  

如上我们就可以实现 post 跳转功能了

正文完
 0