3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ 0 => 'Title1', 1 => 'Title2', 3 => 'Address1', 4 => 'Address2', ]; var_export( array_map( fn($title, $address) => get_defined_vars(), ...array_chunk($array, 2) ) );
Output for git.master, git.master_jit
array ( 0 => array ( 'title' => 'Title1', 'address' => 'Address1', ), 1 => array ( 'title' => 'Title2', 'address' => 'Address2', ), )

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.17 ms | 405 KiB | 5 Q