【发布时间】:2016-08-18 15:34:18
【问题描述】:
我有一个包含许多时间戳的数组。 我需要找到过去 30 分钟内的所有时间戳
当前代码:
//$history is a JSON decoded stream of arrays, of variable lengths
$hist = array();
foreach($history as $newday){
if($newday['Closed'] == $val){
array_push($hist, $newday['Closed']);
}
}
var_dump($hist);
样本数组数据:
array(24) {
[0]=>
string(22) "2016-08-18T05:24:40.47"
[1]=>
string(23) "2016-08-14T11:43:25.917"
[2]=>
string(23) "2016-08-16T08:26:39.693"
[3]=>
string(23) "2016-08-18T04:51:45.553"
如何在 PHP 中计算/查找最后 30 个时间戳 ($hist)?
【问题讨论】: