/**
* 获取时差
* @return string 时差的字符串表示
*/
function get_time_zone()
{
$time_zone = 0 + (date('O') / 100);
if ($time_zone == 0)
{
return '';
}
if ($time_zone > 0)
{
return '+' . $time_zone;
}
return $time_zone;
}
这家伙很懒,还没有设置简介