public function isMobile(){ $useragent=isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; $useragent_commentsblock=preg_match('|\(... ...
分类:
移动开发 时间:
2018-04-18 11:39:09
阅读次数:
202
public function IsWeixinOrAlipay() { $ua = $_SERVER['HTTP_USER_AGENT']; if (strpos($ua, 'MicroMessenger')) { echo '微信'; } elseif (strpos($ua, 'AlipayC ...
分类:
微信 时间:
2018-03-14 17:02:15
阅读次数:
337
续:nginx安装配置开启nginx请求日志同时解开http模块如下部分注释log_formatmain‘$remote_addr-$remote_user[$time_local]"$request"‘‘$status$body_bytes_sent"$http_referer"‘‘"$http_user_agent""$http_x_forwarded_for"‘;access_loglogs
分类:
其他好文 时间:
2018-02-27 23:38:16
阅读次数:
182
nginx内置变量 内置变量存放在 ngx_http_core_module 模块中,变量的命名方式和apache 服务器变量是一致的。总而言之,这些变量代表着客户端请求头的内容,例如$http_user_agent, $http_cookie, 等等。下面是nginx支持的所有内置变量: $arg ...
分类:
其他好文 时间:
2018-02-01 14:46:18
阅读次数:
161
rewrite应用 Rewrite模块设置及Wordpress和Discuz的示例。Nginx的Rewrite规则比Apache的简单灵活多了,从下面介绍可见一斑。 rewrite配置 Nginx可以用if进行条件匹配,语法规则类似C,举例如下: if ($http_user_agent ~ MSI ...
分类:
其他好文 时间:
2018-01-31 22:23:04
阅读次数:
150
日志格式:常用日志格式 log_format main '$remote_addr - $remote_user [stime_local] $request' '"$status" $body_bytes_sent "$http_referer"' '"$http_user_agent" "$ht ...
分类:
其他好文 时间:
2018-01-31 22:18:41
阅读次数:
226
Nginx配置文件中if的&&和||的实现(nginx不支持&&和||的写法) 1.与(&&)的写法: set $condiction '';if ($http_user_agent ~ "Chrome"){ set $condiction a;}if ($args ~ "r=hao123"){ s ...
分类:
其他好文 时间:
2018-01-31 22:15:03
阅读次数:
206
$arr = array(1,2,3,4);$file_data = json_encode($res);$download_filename = '123.json';$http_user_agent = $_SERVER['HTTP_USER_AGENT'];header("Content-Ty ...
分类:
Web程序 时间:
2018-01-20 16:32:23
阅读次数:
170
现在基本上移动互联网都有安卓和苹果端APP,目前大部分也都通过应用商店进行下载,但是也存在扫二维码下载。如果使用一个二维码即可针对安卓及苹果都可以下载安卓呢。使用nginx判断user-agent是否包含iPhone,如果包含自动跳转到appstore去下载安装if($http_user_agent~*‘(iPhone|iPod|iPad)‘){set$ios_request‘1‘;}if($io
分类:
移动开发 时间:
2018-01-09 12:13:13
阅读次数:
212
//判断是否是手机 function is_mobile() { $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $is_pc = (strpos($agent, 'windows nt')) ? true : false; $is_mac = (... ...
分类:
Web程序 时间:
2017-12-20 18:51:19
阅读次数:
186