Code
date_default_timezone_set('Asia/Chongqing');
function gettime($now)
{
//$now = time();
//$time1 = ;
return date("Y-m-d H:i:s T O e",$now);
}
echo gettime($_SERVER['REQUEST_TIME']);
echo time();
//要在设定了时区后才会现实正确的时间
这个问题平常我没有留意过只是在写我的管理器时,才发现,解决的...
date_default_timezone_set('Asia/Chongqing');
function gettime($now)
{
//$now = time();
//$time1 = ;
return date("Y-m-d H:i:s T O e",$now);
}
echo gettime($_SERVER['REQUEST_TIME']);
echo time();
//要在设定了时区后才会现实正确的时间
这个问题平常我没有留意过只是在写我的管理器时,才发现,解决的...