[$uid, '=']]); // Reverse the array so new bans are listed first $bans = array_reverse($bans); // Go over each ban foreach ($bans as $ban) { // Check if it hasn't expired if ($ban['ban_end'] != 0 && $ban['ban_end'] < time()) { // If it has delete the entry and continue Database::delete('bans', ['id' => [$ban['user_id'], '=']]); continue; } // Return the ban if all checks were passed return [ 'user' => $ban['user_id'], 'issuer' => $ban['ban_moderator'], 'issued' => $ban['ban_begin'], 'expires' => $ban['ban_end'], 'reason' => $ban['ban_reason'], ]; } // Else just return false return false; } }