我想在PHP中检测w3c验证器的机器人。因此,如果有人试图在http://validator.w3.org上验证我的网站,我想在Php中做一些其他事情。
答案 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
}