私はこの方法を持っている:2年間の年のリストを取得しますか?
public function getYears($startYear = 1990, $endYear = date ('Y')){
$years = [];
$date = new \DateTime();
$years[$date->format('Y')] = $date->format('Y');
while ($endYear <= $startYear){
$date->add(new \DateInterval('P1Y'));
$years[$date->format('Y')] = $date->format('Y');
$endYear++;
}
return $years;
}
コードのこの作品は、作品をdoens'tが、あなたは私が何をしたいアイデアを得ますか?どのように私はこの作品を作ることができますか? THX
[PHPを使用して2つの日付の違いを計算する方法]の可能な複製?(http://stackoverflow.com/questions/676824/how-to-calculate-the-difference-between-two-dates-using-php) – Fky
@Fkyあなたが提案した投稿は 'strtotime'メソッドを使っています。 'DateTime()'クラスのメソッドを使いたいです。 Thx – Chester
PHPの[range](http://php.net/range)関数を使用するだけではどうですか? – mrun