如何在PHP中检测w3.org的bot?

时间:2012-02-23 10:45:54

标签: php w3c w3c-validation bots

我想在PHP中检测w3c验证器的机器人。因此,如果有人试图在http://validator.w3.org上验证我的网站,我想在Php中做一些其他事情。

1 个答案:

答案 0 :(得分:1)

function w3c(){
if((stristr($_SERVER["HTTP_USER_AGENT"],'w3c') === TRUE))
return true;
}

if(w3c()){
    // this is the w3c
}

如果你想隐藏w3c验证器中的内容,只需使用:

if(!w3c()){
    // this is not visible for the w3c validator
}