3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gradeInList($level_id) { $grade_range = '5-9'; $grade_range_arr = explode('-', $grade_range); if ($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] => 5th [1] => 6th [2] => 7th [3] => 8th [4] => 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:
57.14 ms | 401 KiB | 8 Q