note 72698 deleted from reserved.variables by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: borg at sven-of-nine dot de 

----

Simple function to determine if a visitor is an agent or not

function isbot($agent="")
    {
    //Handfull of Robots
    $bot_array      =array("jeevesteoma",
                                   "msnbot",
                                   "slurp",
                                   "jeevestemoa",
                                   "gulper",
                                   "googlebot",
                                   "linkwalker",
                                   "validator",
                                   "webaltbot",
                                   "wget");
    //no agent given => read from globals
    if ($agent=="")
        {
        @$agent=$_SERVER["HTTP_USER_AGENT"];
        }
    //replace all but alpha
    $agent=strtolower(preg_replace("/[^a-zA-Z _]*/","",$agent));
    //check für intersections
    return((BOOL)count(array_intersect(explode(" ",$agent),$bot_array)));
    }
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.