当访问者从谷歌搜索到我的网站时,我怎样才能获得搜索词?

时间:2012-05-12 12:09:02

标签: php http-headers

当访问者在Google搜索中搜索某个字并进入我的网站时,我想自定义我的index.php。 例如:

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

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

1 个答案:

答案 0 :(得分: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/