授予访问适当用户代理的权限

时间:2015-10-02 17:42:32

标签: php user-agent

我想要访问指定的用户代理,并拒绝其他用户代理。

我有以下脚本,但这里出了点问题:

<?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');

}

?>

1 个答案:

答案 0 :(得分:2)

也许您正在寻找的只是:

if( $_GET['user_agent'] == "DuneHD/1.0 (product_id: hdtv_101; firmware_version: 150721_0135_b9)" ) {
  ...
}

你的if语句中有错误。