我有这个数组
$date = array{"2013-09-17 00:21:00",
"2013-09-23 00:12:00",
"2013-09-23 00:41:00",
"2013-09-20 00:13:00",
"2013-09-19 00:34:00",
"2013-09-17 00:38:00"}
我正在尝试对具有相同日期的数组中的时间求和。
这是我的预期输出:
$date = array{"2013-09-17 00:59:00",
"2013-09-23 00:53:00",
"2013-09-20 00:13:00",
"2013-09-19 00:34:00"}
现在这是我迄今为止尝试过的
foreach($date as $key => $value)
{
$lf_date[] = date("Y-m-d",strtotime($value));
$lf_time[] = date("H:i:s",strtotime($value));
if(isset($lf_date[$key]))
{
$output[] += $lf_time[$key];
}
else
{
$output[] = $lf_time[$key];
}
}
这给了我一个 0 输出 T_T.. 我已经尝试在谷歌上搜索它说我必须使用isset和array_key_exists但我无法让它工作。:(。感谢任何可以帮助我的人。