<?php
$today = '2020-06-25';
$juneDays = [
3 => '2020-06-3',
2 => '2020-06-2',
30 => '2020-06-30',
];
foreach ($juneDays as $june) {
echo var_export([$june, $june > $today], true) . "\n";
}
- Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- array (
0 => '2020-06-3',
1 => true,
)
array (
0 => '2020-06-2',
1 => false,
)
array (
0 => '2020-06-30',
1 => true,
)
preferences:
140 ms | 407 KiB | 5 Q