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] ]; foreach ($stocks as &$row) { // modify by reference foreach ($sales as $k => $row2) { // search for product_id match if ($row['product_id'] == $row2['product_id']) { $row['stocks'] -= $row2['quantity']; // subtract unset($sales[$k]); // eliminate match from lookup array break; // assuming $sales['product_id'] values are unique } } } var_export($stocks);
Output for git.master, git.master_jit, rfc.property-hooks
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:
26.49 ms | 406 KiB | 5 Q