复制代码 代码如下:
<?php
$key = $_GET['key']; //获得关键字
$select = $_GET['select']; //获得搜索引擎的选择
switch($select) //根据搜索引擎的不同跳转到不同的页面
{
case "google": //GOOGLE
$url = "http://www.google.com/search?q=".$key;
header("Location: $url");
break;
case "yahoo": //YAHOO
$url = "http://search.yahoo.com/search?p=".$key;
header("Location: $url");
break;
case "baidu": //百度
$url = "http://www.baidu.com/s?wd=".$key;
header("Location: $url");
break;
default: //如果搜索引擎不存在,结束程序
break;
}
?>
<?php
$key = $_GET['key']; //获得关键字
$select = $_GET['select']; //获得搜索引擎的选择
switch($select) //根据搜索引擎的不同跳转到不同的页面
{
case "google": //GOOGLE
$url = "http://www.google.com/search?q=".$key;
header("Location: $url");
break;
case "yahoo": //YAHOO
$url = "http://search.yahoo.com/search?p=".$key;
header("Location: $url");
break;
case "baidu": //百度
$url = "http://www.baidu.com/s?wd=".$key;
header("Location: $url");
break;
default: //如果搜索引擎不存在,结束程序
break;
}
?>
运行结果如图36-4所示。
单击【Submit】按钮后,可以看到Yahoo网站被打开了,并搜索到了相关的搜索结果,如图36-5所示。
标签:
PHP,搜索引擎,调用
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“解析PHP对现有搜索引擎的调用”评论...