blob: 971914e4da1d9be8bbfcae4a3bba48f6a408de13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <ngx_config.h>
#include <ngx_core.h>
size_t ngx_http_get_time(char *buf, time_t t)
{
struct tm *tp;
tp = gmtime(&t);
return strftime(buf, 30, "%a, %d %b %Y %H:%M:%S GMT", tp);
}
|