解析PHP对现有搜索引擎的调用

前端之家收集整理的这篇文章主要介绍了解析PHP对现有搜索引擎的调用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="60012" class="copybut" id="copybut60012" onclick="doCopy('code60012')"> 代码如下:

<div class="codebody" id="code60012">
<?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所示。

图36-4PHP综合搜索引擎

单击【Submit】按钮后,可以看到Yahoo网站被打开了,并搜索到了相关的搜索结果,如图36-5所示。

图36-5 Yahoo的搜索结果

原文链接:https://www.f2er.com/php/26029.html

猜你在找的PHP相关文章