3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ 2 => 'first=1', 3 => 'second=2', 4 => 'third=', 5 => 'first=4', 9 => 'second=3', ]; $result = []; foreach ($array as $string) { [$key, $value] = explode('=', $string, 2); if (!isset($entry) || isset($entry[$key])) { unset($entry); $result[] = &$entry; } $entry[$key] = $value; } var_export($result);
Output for git.master, git.master_jit, rfc.property-hooks
array ( 0 => array ( 'first' => '1', 'second' => '2', 'third' => '', ), 1 => array ( 'first' => '4', 'second' => '3', ), )

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