日付を文字列から取得
2021/11/22
PHP7.4.6
$time = strtotime('2020-04-01')
$timeはUNIXタイムスタンプ。UNIXタイムスタンプは1970年1月1日から経過した秒数。
二つの日付間の日数の算出
$time1 = strtotime('2019-04-01');
$time2 = strtotime('2018-04-01');
echo ($time1 - $time2) / (60 * 60 * 24);
//⇒365
PHPで日付の比較をするにはDateTimeクラスが便利!
https://techplay.jp/column/596
PHP 日付のフォーマット date()/strtotime()/DateTimeクラス
https://wepicks.net/phpsample-date-format/