我怎样才能用循环编写这段代码?
$date = new DateTime;
if(checkForDate($date->format('m')) == true) {
return true;
}
else {
$date->sub(new DateInterval('P1M'));
if(checkForDate($date->format('m')) == true) {
return true;
}
else {
$date->sub(new DateInterval('P1M'));
if(checkForDate($date->format('m')) == true) {
return true;
}
else {
// Fail.
return false;
}
}
}