0, "exchange_rate" => $rate, "users" => [ "cloudburst" => [ "total" => 0, "accounts" => [] ], "raindrops" => [ "total" => 0, "accounts" => [] ] ] ]; $allAccounts = array_reduce(array_map(function ($i) { return calculateFullAmount($i, true, true); }, $accounts), function ($a, $b) { return $a + $b; }); $obj["total"] = [ "gbp" => round($allAccounts, 2), "eur" => round($allAccounts * (1 / $rate), 2) ]; /* ------------------- */ $allAccounts = array_reduce(array_map(function ($i) { return calculateFullAmount($i, true, true); }, array_values(array_filter($accounts, function ($i) { return $i["owner"] === "cloudburst"; }))), function ($a, $b) { return $a + $b; }); $obj["users"]["cloudburst"]["total"] = $allAccounts; foreach ($accounts as $index => $account) { if ($account["owner"] === "cloudburst") { $acc = []; $acc["id"] = $account["_name"]; $acc["name"] = $account["name"]; $acc["currency"] = $account["currency"]; $acc["default"] = $account["default"]; $acc["total"] = round(calculateFullAmount($account, true), 2); $acc["interests"] = $account["interests"]; $acc["max"] = $account["max"]; $acc["used_percentage"] = isset($account["max"]) ? (calculateFullAmount($account, true) / $account["max"]) * 100 : null; $obj["users"]["cloudburst"]["accounts"][] = $acc; } } /* ------------------- */ $allAccounts = array_reduce(array_map(function ($i) { return calculateFullAmount($i, true, true); }, array_values(array_filter($accounts, function ($i) { return $i["owner"] === "raindrops"; }))), function ($a, $b) { return $a + $b; }); $obj["users"]["raindrops"]["total"] = $allAccounts; foreach ($accounts as $index => $account) { if ($account["owner"] === "raindrops") { $acc = []; $acc["id"] = $account["_name"]; $acc["name"] = $account["name"]; $acc["currency"] = $account["currency"]; $acc["default"] = $account["default"]; $acc["total"] = round(calculateFullAmount($account, true), 2); $acc["interests"] = $account["interests"]; $acc["max"] = $account["max"]; $acc["used_percentage"] = isset($account["max"]) ? (calculateFullAmount($account, true) / $account["max"]) * 100 : null; $acc["transactions"] = null; $obj["users"]["raindrops"]["accounts"][] = $acc; } } /* ------------------- */ die(json_encode($obj, JSON_PRETTY_PRINT));