3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dat = ["2020-02-01", "2020-02-05", "2020-02-10", "20-02-12", "2020-02-15"]; $word = ["Attend To,Explore,Unaided,dull,bad"]; $words = explode(',', $word[0]); //User input $start = "2020-01-01"; $end = "2020-02-07"; $result = []; foreach ($dat as $index => $date) { if ($date >= $start && $date <= $end) { $result[] = $words[$index]; } } var_export($result);
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.26, 8.4.1 - 8.4.13
array ( 0 => 'Attend To', 1 => 'Explore', )

preferences:
47.07 ms | 407 KiB | 5 Q