首页 > 代码库 > 时间戳比较

时间戳比较

$a = ‘2014-12-30 00:00:00‘;$b = ‘2014-12-30 00:10:00‘;echo strtotime($a)."\n";    //1419894000echo strtotime($b);         //1419894600
相差10分钟(600秒),时间戳就是600

时间戳比较