php中如何调用一个网址
发布网友
发布时间:2022-04-20 17:59
我来回答
共11个回答
热心网友
时间:2022-04-18 11:45
你在go.php里面写下面的代码:
$url=$_GET['s'];
switch($url){
case :
header("location:这里是你地址写上就行") exit();
break;
//……
}
注意运行php,在地址栏上输入http://localhost/ 看看
我的回答还行吧,有不会的更多问题可以去后盾网论坛问题求助专区,可以帮助你很多!
热心网友
时间:2022-04-18 13:03
你在go.php里面写下面的代码:
$url=$_GET['s'];
switch($url){
case :
header("location:这里是你地址写上就行") exit();
break;
//……
}
注意运行php,在地址栏上输入http://localhost/ 看看
热心网友
时间:2022-04-18 14:38
重定向啊,那个框架里都有重定向的方法 直接用就好了啊
或者你在你的页面head里面加一串js
<script>
window.location.href='你要跳转的链接';
</script>
热心网友
时间:2022-04-18 16:29
你可以写一个跳转。
打开这个文件就会直接开你指定的页面
< ?php
//重定向浏览器 header("Location: http://www.sq918.com");
//确保重定向后,后续代码不会被执行 ......?>
热心网友
时间:2022-04-18 18:37
如果是模拟访问的话可以使用curl扩展库,或者file_get_contents,如果是重定向跳转的话直接用header函数。
热心网友
时间:2022-04-18 21:02
在go.php
里面写:
$url=$_GET['s'];
switch($url){
case :
header("location:http://zhidao.baidu.com") exit();
break;
//……
}追问我新建了一个go.php,但是打开就是$url=$_GET['s'];
switch($url){
case :
header("location:http://zhidao.baidu.com") exit();
break;
//……
}
能告诉我怎么操作吗?谢谢
追答..你的php都没运行吧。。在地址栏上输入http://localhost/ 看看有什么
http://localhost/go.php?s=
热心网友
时间:2022-04-18 23:43
go.php
<?php
if($_GET['s'] == ''){
header('Location: http://zhidao.baidu.com/');
}
?>
热心网友
时间:2022-04-19 02:41
$re = file_get_content(url)
//$re就是目标网址返回回来的内容
热心网友
时间:2022-04-19 05:56
curl
百度上面的字符
热心网友
时间:2022-04-19 09:27
判断参数 ,跳转
热心网友
时间:2022-04-19 13:15
用正则表达式+HEADER追问请告诉我详细操作方法,谢谢了;