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 git.master, git.master_jit, rfc.property-hooks
Array ( [0] => K [1] => 1st [2] => 2nd [3] => 3rd [4] => 4th [5] => 5th [6] => 6th [7] => 7th [8] => 8th [9] => 9th )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
45.5 ms | 401 KiB | 8 Q