URL jump code
1. Code:
$url=$_GET["url"];header("Location:"."http://".$url);?> If saved as aaa. php, you can achieve the effect of aaa.php?url=www.baidu.com jumping to Baidu.
This simply calls the default $_GET variable. And php default jump Location:
2. Instance upgrade: add if loop
Code:
Copy code The code is as follows:
$url=$_GET["url"];
if (strlen($url >=3)){
header(" Location:"."http://".$url);
}
?>
The above introduces the babyliss pro perfect curl php URL jump code to reduce external links, including the content of babyliss pro perfect curl. I hope it will be helpful to friends who are interested in PHP tutorials.