PHP 对日期数组进行排序
要在PHP中对日期数组进行排序,代码如下-
示例
<?phpfunction compareDates($date1, $date2){
return strtotime($date1) - strtotime($date2);
}
$dateArr = array("2019-11-11", "2019-10-10","2019-08-10", "2019-09-08");
usort($dateArr, "compareDates");
print_r($dateArr);
?>
输出结果
这将产生以下输出-
Array(
[0] => 2019-08-10
[1] => 2019-09-08
[2] => 2019-10-10
[3] => 2019-11-11
)
示例
现在让我们来看另一个示例-
<?phpfunction compareDates($date1, $date2){
if (strtotime($date1) < strtotime($date2))
return 1;
else if (strtotime($date1) > strtotime($date2))
return -1;
else
return 0;
}
$dateArr = array("2019-11-11", "2019-10-10","2019-11-11", "2019-09-08","2019-05-11", "2019-01-01");
usort($dateArr, "compareDates");
print_r($dateArr);
?>
输出结果
这将产生以下输出-
Array(
[0] => 2019-11-11
[1] => 2019-11-11
[2] => 2019-10-10
[3] => 2019-09-08
[4] => 2019-05-11
[5] => 2019-01-01
)
以上是 PHP 对日期数组进行排序 的全部内容, 来源链接: utcz.com/z/343666.html