我想要访问指定的用户代理,并拒绝其他用户代理。
我有以下脚本,但这里出了点问题:
<?php
if( ($_GET['user_agent'],"DuneHD/1.0 (product_id: hdtv_101; firmware_version: 150721_0135_b9)")) {
header('HTTP/1.0 200 OK');
}
else {
header('HTTP/1.0 403 Forbidden');
}
?>
答案 0 :(得分:2)
也许您正在寻找的只是:
if( $_GET['user_agent'] == "DuneHD/1.0 (product_id: hdtv_101; firmware_version: 150721_0135_b9)" ) {
...
}
你的if语句中有错误。