3v4l.org

run code in 300+ PHP versions simultaneously
<?php $in = array( "Hello", "Hello | world", "Hello | My | Lovely | World" ); foreach($in as $test){ list($one,$two) = explode(" | ", $test, 2); print_r(array($one, $two)); } foreach($in as $test){ list($one,$two) = explode(" | ", $test); print_r(array($one, $two)); }
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined array key 1 in /in/JcSPp on line 10 Array ( [0] => Hello [1] => ) Array ( [0] => Hello [1] => world ) Array ( [0] => Hello [1] => My | Lovely | World ) Warning: Undefined array key 1 in /in/JcSPp on line 15 Array ( [0] => Hello [1] => ) Array ( [0] => Hello [1] => world ) Array ( [0] => Hello [1] => My )

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