4

当访问者在谷歌搜索中搜索一个词并来到我的网站时,我想自定义我的 index.php。前任:

if(visitor searches for "A" in google search)
   do somthing;
elseif(visitor searches for "B" in google search)
   do somthing else;

如果我应该使用推荐人告诉我怎么做?

4

1 回答 1

3

试试这个脚本:

function getKeywords()
{
    $refer = parse_url($_SERVER['HTTP_REFERER']);
    $host = $refer['host'];
    $refer = $refer['query'];

    if(strstr($host,'google'))
    {
        $match = preg_match('/&q=([a-zA-Z0-9+-]+)/',$refer, $output);
        $querystring = $output[0];
        $querystring = str_replace('&q=','',$querystring);
        $keywords = explode('+',$querystring);
        return $keywords;
    }
    else
    {
        return false;
    }
}

注意:当有人使用加密的 Google(使用 SSL)时,这不起作用:https ://encrypted.google.com/

于 2012-05-12T12:11:11.893 回答