PHP 使用数组中回两个日期之间的所有日期
要返回两个日期之间的所有日期,代码如下-
示例
<?php
function displayDates($date1, $date2, $format = 'd-m-Y' ) {
$dates = array();
$current = strtotime($date1);
$date2 = strtotime($date2);
$stepVal = '+1 day';
while( $current <= $date2 ) {
$dates[] = date($format, $current);
$current = strtotime($stepVal, $current);
}
return $dates;
}
$date = displayDates('2019-11-10', '2019-11-20');
var_dump($date);
?>输出结果
array(11) {
[0]=>
string(10) "10-11-2019"
[1]=>
string(10) "11-11-2019"
[2]=>
string(10) "12-11-2019"
[3]=>
string(10) "13-11-2019"
[4]=>
string(10) "14-11-2019"
[5]=>
string(10) "15-11-2019"
[6]=>
string(10) "16-11-2019"
[7]=>
string(10) "17-11-2019"
[8]=>
string(10) "18-11-2019"
[9]=>
string(10) "19-11-2019"
[10]=>
string(10) "20-11-2019"
}热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短