//判断是否是手机function is_mobile(){ $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $is_pc = (strpos($agent, 'windows nt')) ? true : false;...
分类:
移动开发 时间:
2014-10-21 23:07:20
阅读次数:
320
cdn注入流程详细分解:主要包括cdnadapter、ci、cl、cpm、mysql、sqlite
一、cdnadapter
1.cdnadapter接收到AutoTest发来的消息:以下是非标准的A3消息
POST /TransferContent HTTP/1.1
User-Agent: Java/1.6.0_21
Host: 172.30.25.245:8071
Accept:...
分类:
其他好文 时间:
2014-10-17 16:57:07
阅读次数:
201
http{include/etc/nginx/mime.types;default_typeapplication/octet-stream;charsetutf-8;log_formatmain‘$remote_addr-$remote_user[$time_local]"$request"‘‘$status$body_bytes_sent"$http_referer"‘‘"$http_user_agent""$http_x_forwarded_for"‘;access_log/var/log/nginx/..
分类:
Web程序 时间:
2014-10-13 18:36:30
阅读次数:
226
$_SERVERHTTP_HOST:localhost//当前请求头中Host:项的内容
HTTP_CONNECTION:keep-alive
HTTP_CACHE_CONTROL:max-age=0
HTTP_ACCEPT:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_USER_AGENT:Mozilla/5.0(WindowsNT6.1;WOW64)AppleWebKit/537.36(KHTM..
分类:
其他好文 时间:
2014-09-24 19:10:38
阅读次数:
235
function getBrowser(){
$agent=$_SERVER["HTTP_USER_AGENT"];
if(strpos($agent,‘MSIE‘)!==false || strpos($agent,‘rv:11.0‘)) //ie11判断
return "ie";
else if(strpos($agent,‘Firefox‘)!==...
分类:
Web程序 时间:
2014-09-16 16:15:30
阅读次数:
207
需要针对IE浏览器对文件名进行一下操作:HttpContext.Current.Request.ServerVariables["http_user_agent"].IndexOf("firefox")==-1 fileName=HttpUtility.UrlEncode(fileName,Sys....
分类:
Web程序 时间:
2014-09-10 14:07:20
阅读次数:
159
今天在做一个wap网站时,需要限制PC用户访问。网上找了很多资料,效果都不怎么理想。其实原理就是根据HTTP_USER_AGENT判断检查用户在用什么浏览器,再根据业务做相应的逻辑处理。 代码如下: 1 public class IsPhoneAttribute : ActionFilterAt.....
分类:
移动开发 时间:
2014-09-04 22:11:10
阅读次数:
388
访问PHP的时候生成TXT并自动下载。第一步:处理中文文件名:Php代码$ua=$_SERVER["HTTP_USER_AGENT"];$filename="中文文件名.txt";$encoded_filename=urlencode($filename);$encoded_filename=str...
分类:
Web程序 时间:
2014-09-04 20:39:20
阅读次数:
197
<?php/***现公司在用的,不完善的地方望提出*/class FromPhoneOrPc { //判断来自电脑还是手机 public function judgeFrom() { $uAgent = $_SERVER['HTTP_USER_AGENT']; ...
分类:
移动开发 时间:
2014-08-29 17:43:10
阅读次数:
315
// 判断是移动端还是PC端 $http_user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? strtolower($_SERVER['HTTP_USER_AGENT']): '';$http_accept = isset($_SERVER['HTT....
分类:
移动开发 时间:
2014-08-28 13:18:19
阅读次数:
200