3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getRates() { return array_fill( 0, 10000, array ( 'Board' => 'nin', 'Price' => 32, 'NetPrice' => 32, 'BookingFee' => 12, 'Tax' => 0, 'forfait' => 1, 'ProviderId' => 1 ) ); } $keys = array(); $rates = array(); foreach (getRates() as $rate) { unset($rate['forfait']); unset($rate['ProviderId']); if (!$keys) { foreach (array_keys($rate) as $key) { $keys[] = lcfirst($key == 'Regimen' ? 'board' : $key); } } $rates[] = array_combine($keys, $rate); }

preferences:
43.47 ms | 402 KiB | 5 Q