browseragent.class.php.svn-base

来自「j2me is based on j2mepolish, client & se」· SVN-BASE 代码 · 共 15 行

SVN-BASE
15
字号
<?phpclass BrowserAgent {  function isMobile () {    $agent=$_SERVER["HTTP_USER_AGENT"];    // If mobile phone, see http://www.developershome.com/wap/detection/detection.asp?page=userAgentHeader    $res = preg_match('/nokia|symbian|motorola|mot\-|samsung|sec\-|lg\-|sonyericsson|sie\-|up\.b|up\//i', $agent);    return $res;  }}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?