3v4l.org

run code in 300+ PHP versions simultaneously
<?php $response = [ 'success' => 1, 'return' => [ 'sellorders' => [ [ 'sellprice' => 0.00000059, 'quantity' => 1076.00000000, 'total' => 0.00063484, ], [ 'sellprice' => 0.00000060, 'quantity' => 927.41519000, 'total' => 0.00055645, ], ], 'buyorders' => [ [ 'buyprice' => 0.00000058, 'quantity' => 6535.77328102, 'total' => 0.00379075, ], [ 'buyprice' => 0.00000057, 'quantity' => 118539.39620414, 'total' => 0.06756746, ], ], ], ]; $result = []; foreach ($response['return'] as $orders) { foreach ($orders as $item) { $result[] = [ 'sellprice' => $item['sellprice'] ?? $item['buyprice'], 'sellquantity' => $item['quantity'], 'selltotal' => $item['total'], ]; } } var_export($result);

preferences:
29.36 ms | 404 KiB | 5 Q