<?php $arr = Array( '0' => Array ( 'code' => 'Custom discount', 'amount' => 3514.55, 'type' => 'fixed_amount' ), '1' => Array ( 'code' => 'MerOrder300', 'amount' => 400.00, 'type' => 'fixed_amount' ), '2' => Array ( 'code' => 'MerOrder400', 'amount' => 400.00, 'type' => 'fixed_amount' ), '3' => Array ( 'code' => 'MerOrder450', 'amount' => 450.00, 'type' => 'fixed_amount' ) ); $amountArr = array_column($arr, null, 'amount'); print_r($amountArr[max(array_keys($amountArr))]);
You have javascript disabled. You will not be able to edit any code.