3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = [ ['value' => '150mm', 'label' => '150mm'], ['value' => '150mm', 'label' => '150mm'], ['value' => '150mm', 'label' => '150mm'], ['value' => '125mm', 'label' => '125mm'], ['value' => '125mm', 'label' => '125mm'] ]; $r = array_values(array_column($a, null, 'label')); print_r($r); /******** if you want to keep single column ******/ $r = array_values(array_column($a, 'value', 'label')); print_r($r);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [value] => 150mm [label] => 150mm ) [1] => Array ( [value] => 125mm [label] => 125mm ) ) Array ( [0] => 150mm [1] => 125mm )

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