我真的很困惑,我尝试了很多相关的方法来对可能具有不同格式的日期数组进行排序。
我有一个日期数组,例如:
"0"=>"09.10.2012"
"1"=>"02.10.12"
"2"=>"27.09.15"
"2.0"=>"28.09.2012"
"2.1"=>"29.9.2012"
"2.2"=>"29.09.2012"
"3"=>"9.10.2012"
"3.1"=>"23.4.10"
"4"=>"28.09.2012"
"5"=>"26.10.2012"
"6"=>"12.09.98"
"6.0"=>"05.03.2013"
"6.1"=>"23.4.2013"
(键是字符串是有原因的)
现在我知道它们将采用相同的格式顺序 - days, month, years 。但是正如您在给定数组中看到的那样,数字可能会发生变化。
我基本上将它们解析为日-月-年(根据文档识别的欧洲格式strtotime()
),然后将它们更改为 Unix 时间戳,我正在使用对数组进行排序,但asort()
结果不佳:
[6]->[] -- 12.09.98
[1]->[1034380800] -- 02.10.12
[2.0]->[1348790400] -- 28.09.2012
[4]->[1348790400] -- 28.09.2012
[2.2]->[1348876800] -- 29.09.2012
[2.1]->[1348876800] -- 29.9.2012
[3]->[1349740800] -- 9.10.2012
[0]->[1349740800] -- 09.10.2012
[5]->[1351209600] -- 26.10.2012
[6.0]->[1362441600] -- 05.03.2013
[6.1]->[1366675200] -- 23.4.2013
[3.1]->[1681084800] -- 23.4.10
[2]->[1820966400] -- 27.09.15
如您所见,[6](unixtime)
包含False并且strtotime()
无法转换日期。
这是我的代码:
function sortArrays_ByDate($target){
foreach($target as $key_s => $val_s) { $date_exp = preg_replace('#(\.|_)#','-',$val_s); $target[(string)$key_s] = $date_exp; }
foreach($target as $key_s => $val_s) { $date_exp = strtotime($val_s); $target[(string)$key_s] = $date_exp; }
asort($target);
return $target;
}
有人可以解释一下我出了什么问题...
谢谢