3v4l.org

run code in 300+ PHP versions simultaneously
<?php function range_string_to_array($range_string) { $range_string = trim($range_string); $return_array = array(); $return = array(); $range_string = str_replace(',', '+', $range_string); $range_string = str_replace(' ', '+', $range_string); if (is_numeric($range_string)) { return array($range_string); } $split_array = explode('+', $range_string); foreach ($split_array as $split1) { if ($split1 === '') { continue; } if (strpos($split1, '-') > -1) { $split = explode('-', $split1); if ($split[0] === '' && $split[1] === '') { continue; } if (floor($split[0]) != $split[0]) { $return_array[] = $split[0]; $return_array[] = floor($split[0]) + 1; } if (floor($split[1]) != $split[1]) { $return_array[] = $split[1]; $return_array[] = floor($split[1]) + 1; } foreach (range($split[0], $split[1], 1) as $split2) { $return_array[] = $split2; } } else { $return_array[] = $split1; } } foreach ($return_array as $return_array_val) { if (is_numeric($return_array_val)) { $return[] = $return_array_val; } } $return = array_unique($return); sort($return); return $return; } print_r(range_string_to_array('155.5-177'));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 155.5 [1] => 156 [2] => 156.5 [3] => 157.5 [4] => 158.5 [5] => 159.5 [6] => 160.5 [7] => 161.5 [8] => 162.5 [9] => 163.5 [10] => 164.5 [11] => 165.5 [12] => 166.5 [13] => 167.5 [14] => 168.5 [15] => 169.5 [16] => 170.5 [17] => 171.5 [18] => 172.5 [19] => 173.5 [20] => 174.5 [21] => 175.5 [22] => 176.5 )

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:
51.59 ms | 402 KiB | 8 Q