php url跳转代码实例二则

发布时间:2019-10-31编辑:脚本学堂
本文介绍了php实现url跳转的二种方法,php url跳转代码示例,有需要的朋友参考下。

本节内容:
php url跳转代码
 
1,代码:
 

复制代码 代码示例:
<?
 $url=$_get["url"];
 header("location:"."http://".$url);
?> 
 

 如保存为aaa.php,可以实现aaa.php?url=www.baidu.com跳转到百度的效果. 
 这个简单的调用了默认的$_get变量.以及php默认跳转location。

2,实例升级:增加if循环
 

复制代码 代码示例:
<? 
$url=$_get["url"];
if (strlen($url >=3)){ 
   header("location:"."http://".$url);
}
?>
<html>
<head><title>url转向页</title></head>
<body>
<form id="url" name="url" method="get" action="#">
<label>http://<input name="url" type="text" value="" />  </label> 
<input type="submit" name="submit" value="提交" />  </form>
</body>
</html>