3v4l.org

run code in 300+ PHP versions simultaneously
<?php $promos = [ '123' => ['id' => '123', 'weight' => 1], '234' => ['id' => '234', 'weight' => 3], '345' => ['id' => '345', 'weight' => 2], ]; $cr['promos'] = [ '123' => ['id' => '123', 'weight' => 1], '234' => ['id' => '234', 'weight' => 3], '345' => ['id' => '345', 'weight' => 2], ]; $promo_weights = array_column($promos, 'weight', 'id'); array_multisort($promo_weights, SORT_ASC, $cr['promos']); var_dump($cr['promos']);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> array(2) { ["id"]=> string(3) "123" ["weight"]=> int(1) } [1]=> array(2) { ["id"]=> string(3) "345" ["weight"]=> int(2) } [2]=> array(2) { ["id"]=> string(3) "234" ["weight"]=> int(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:
36.7 ms | 402 KiB | 8 Q