丢失的一小时_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > 丢失的一小时

丢失的一小时

 2010/12/25 0:03:00  siyoung  http://siyoung.javaeye.com  我要评论(0)
  • 摘要:同样的时间段,在不同的时区下,转换成秒以后居然会不相等。date_default_timezone_set('America/Los_Angeles');echo'America/Los_Angeles';echo"\n";$start=strtotime('2010-12-2000:00:00');echo$start;echo"\n";$end=strtotime('2011-04-0500:00:00');echo$end;echo"\n";$offset1=$end-$start
  • 标签:

同样的时间段,在不同的时区下,转换成秒以后居然会不相等。

date_default_timezone_set('America/Los_Angeles');

echo 'America/Los_Angeles';
echo "\n";
$start = strtotime('2010-12-20 00:00:00');
echo $start;
echo "\n";
$end = strtotime('2011-04-05 00:00:00');
echo $end;
echo "\n";
$offset1 = $end - $start;
echo $offset1;
echo "\n";

date_default_timezone_set('Asia/ShangHai');

echo 'Asia/ShangHai';
echo "\n";
$start = strtotime('2010-12-20 00:00:00');
echo $start;
echo "\n";
$end = strtotime('2011-04-05 00:00:00');
echo $end;
echo "\n";
$offset2 = $end - $start;
echo $offset2;
echo "\n";

echo $offset2 - $offset1;

运行结果如下:

X-Powered-By: PHP/5.2.0
Content-type: text/html

America/Los_Angeles
1292832000
1301986800
9154800
Asia/ShangHai
1292774400
1301932800
9158400
3600
  • 相关文章
发表评论
用户名: 匿名