我如何檢查給定日期(即4/2017)是否在未來6個月內?6個月內的PHP日期
例如:
4/2017 true
8/2017 false
5/2017 true
我現在有:
$datum = explode(': ', $given_date); // Separate date from string
$datum = str_replace('/', '-', $datum[1]); // Given format month/year
$datum = strtotime('01-'.$datum); // Given only month/year
$limit_datum = strtotime('+6 months');
但現在我傾斜,並不能得到怎樣比較吧...
使用的字符串['DateTime'(https://secure.php.net/DateTime)。 –