3v4l.org

run code in 300+ PHP versions simultaneously
<?php $stocks = [ ['product_id'=>2, 'stocks'=>50], ['product_id'=>3, 'stocks'=>100], ['product_id'=>4, 'stocks'=>20], ['product_id'=>5, 'stocks'=>60] ]; $sales = [ ['product_id'=>4, 'quantity'=>3], ['product_id'=>5, 'quantity'=>30] ]; $keyed = array_column($sales, 'quantity', 'product_id'); var_export($keyed); echo "\n---\n"; foreach ($stocks as &$row) { // modify by reference if (isset($keyed[$row['product_id']])) { // search for product_id match $row['stocks'] -= $keyed[$row['product_id']]; // subtract } } var_export($stocks);
Output for git.master, git.master_jit, rfc.property-hooks
array ( 4 => 3, 5 => 30, ) --- array ( 0 => array ( 'product_id' => 2, 'stocks' => 50, ), 1 => array ( 'product_id' => 3, 'stocks' => 100, ), 2 => array ( 'product_id' => 4, 'stocks' => 17, ), 3 => array ( 'product_id' => 5, 'stocks' => 30, ), )

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