3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = [ [1, 2, 3, 4], [1, 2, 3, 4], [1, 2, 3, 4], ]; $keys = ['A', 'B', 'C', 'D']; $input = array_map(function($a) use ($keys) { return array_combine($keys, $a); }, $input); var_dump($input);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> array(4) { ["A"]=> int(1) ["B"]=> int(2) ["C"]=> int(3) ["D"]=> int(4) } [1]=> array(4) { ["A"]=> int(1) ["B"]=> int(2) ["C"]=> int(3) ["D"]=> int(4) } [2]=> array(4) { ["A"]=> int(1) ["B"]=> int(2) ["C"]=> int(3) ["D"]=> int(4) } }

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:
172.05 ms | 406 KiB | 5 Q