3v4l.org

run code in 300+ PHP versions simultaneously
<?php $list = [ '10-20', '12-14', '-5-10', '-10--2' ]; foreach ($list as $item) { list($first, $second) = preg_split('/(?<=\d)-/', $item); echo "\$first = $first, \$second = $second\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
$first = 10, $second = 20 $first = 12, $second = 14 $first = -5, $second = 10 $first = -10, $second = -2

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