3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data = <<<STRING 34 Item 5423 11Item 44 Item 3470 BLABLA TEF2200 STRING; $arr = array(); foreach (explode("\n", $data) as $row) { preg_match('/^(?<id>\d+)\s+(?<name>[\w ]+)$/', $row, $matches); $id = $matches['id']; $name = $matches['name']; if ($id > 1 && $id < 65366) { $arr[$id] = $name; } } print_r($arr);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [34] => Item [5423] => 11Item [44] => Item [3470] => BLABLA TEF2200 )

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:
69.27 ms | 401 KiB | 8 Q