1、nginx 时间模块:
wget https://bitbucket.org/atomd/ngx_time_var/get/393ca2463886.zip
Installation
./configure --add-module=/path/to/ngx_http_time_var_module --add-module=/path/to/echo_module
Working example:
default_type text/plain; echo 'year :$tm_year'; echo 'month :$tm_month'; echo 'day :$tm_day'; echo 'hour :$tm_hour'; echo 'minute:$tm_minute'; echo 'second:$tm_second'; echo ''; echo $tm_err_log_time; echo $tm_http_time; echo $tm_http_log_time; echo $tm_http_log_iso8601; echo ''; echo $tm_tomsec; echo $tm_tosec;
Output:
year :2012 month :01 day :08 hour :03 minute:54 second:21 2012/01/08 03:54:21 Sat, 07 Jan 2012 19:54:21 GMT 08/Jan/2012:03:54:21 +0800 2012-01-08T03:54:21+08:00 1325966061.521 1325966061
本文转自 Art_Hero 51CTO博客,原文链接:http://blog.51cto.com/curran/1313149,如需转载请自行联系原作者