3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = 'September 14-20, 26, 28-30, October 1-8, 10, 11, 15-20, 24, November 25, 28-30'; preg_match('/(\w+)\s(\d+)/', $str, $pieces); $first_month = $pieces[1]; $first_day = $pieces[2]; var_dump($first_month, $first_day);
Output for 7.1.0 - 7.1.33, 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
string(9) "September" string(2) "14"

preferences:
144.08 ms | 407 KiB | 5 Q