3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * gradeInList method * * Method to return a grade inlist array for the chosen team level for the dynamically created grade_range validation rule. * * @param string $level_id * @return array */ function gradeInList($level_id) { $grade_range = 'k-9'; $grade_range_arr = explode('-', $grade_range); if (strtolower($grade_range_arr[0]) == 'k') { $grade_range_arr[0] = 0; } if (stripos($grade_range,'N/A') !== false) { return array('N/A'); } $list = array(); foreach (range($grade_range_arr[0], $grade_range_arr[1]) as $grade) { if ($grade == 0) { $list[] = 'K'; continue; } if ($grade == 1) { $list[] = '1st'; continue; } if ($grade == 2) { $list[] = '2nd'; continue; } if ($grade == 3) { $list[] = '3rd'; continue; } $list[] = $grade . 'th'; } return $list; } print_r(gradeInList(NULL));
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Array ( [0] => K [1] => 1st [2] => 2nd [3] => 3rd [4] => 4th [5] => 5th [6] => 6th [7] => 7th [8] => 8th [9] => 9th )
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: stripos() in /in/A9EOS on line 17
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: stripos() in /in/A9EOS on line 17
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: stripos() in /in/A9EOS on line 17

preferences:
198.63 ms | 401 KiB | 313 Q