月度归档: 2012 年 5 月

Redis中删除SortSet的最大Score和最小Score
hliang
Posted on
删除最小Score zremrangebyrank key 0 0 删除最大Score zremrangebyrank key -1 -1
Read More
Python中,时间字符串与时间戳的互相转换
hliang
Posted on
时间字符串转换为时间戳: import time timestring = ‘2012-05-15 17:12:37’ timestamp = int(time.mktime(time.strptime(timestring, ‘%Y-%m-%d %H:%M:%S’))) print timesta…
Read More
在AJAX页面显示Loading…
hliang
Posted on
直接贴代码: #ajaxloading { right:0; top:0; width:130px; position:fixed; padding:10px; text-align:center; font-weight:bold; background:#900; color:#FFF; } *…
Read More
13 个mod_rewrite 应用举例
hliang
Posted on
1.给子域名加www标记 RewriteCond %{HTTP_HOST} ^([a-z.]+)?example.com$ [NC] RewriteCond %{HTTP_HOST} !^www. [NC] RewriteRule .? http://www.%1example.com%{REQUE…
Read More