如何获取上一个和下一个日期,将当前日期与日期数组进行比较。 我有字符串格式的日期来比较当前日期,并从日期中返回上一个和下一个日期
今天的当前日期,例如stochrickvect <-
function(p0=runif(1000,.5,1.5),r=1.2,K=1,sigma=0.2,numyears=100)
{
#initialize
N<-matrix(NA,numyears,length(p0))
N[1,]<-p0
for (pop in 1:length(p0)) #loop through the populations
{
for (yr in 2:numyears) #for each pop, loop through the years
{
N[yr,pop]<-N[yr-1,pop]*exp(r*(1-N[yr-1,pop]/K)+rnorm(1,0,sigma))
}
}
return(N)
}
16, Oct 2018 20:02
输出日期
foreach($arraydates as $date) {
echo date('d, M Y H:i', $date) . '<br>';
}
返回结果应类似于
02, Oct 2018 06:26<br>
09, Oct 2018 05:47<br>
18, Oct 2018 20:02<br>
24, Oct 2018 18:47<br>
31, Oct 2018 17:42<br>
07, Nov 2018 17:02<br>
答案 0 :(得分:2)
考虑因素$arrayDates
按升序排列。
<?php
$currentDate = strtotime("16, Oct 2018 12:00");
$prevDate;
$nextDate;
foreach($arrayDates as $date){
$date = strtotime($date);
if($date < $currentDate) {
$prevDate = $date;
}
if($date > $currentDate){
$nextDate = $date;
break;
}
}
?>
上一个日期存储在$prevDate
中,下一个日期存储在$nextDate