3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = [ 12 => "USD", 13 => "10150.00", 14 => "9850.00", 15 => "SGD", 16 => "8015.40", 17 => "7915.40", 18 => "HKD", 19 => "1304.60", 20 => "1288.60" ]; var_export( array_reduce( array_chunk($input, 3), function($carry, $item) { $carry[$item[0]] = ["Buy" => $item[1], "Sell" => $item[2]]; return $carry; }, [] ) );

preferences:
25.3 ms | 406 KiB | 5 Q