溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

laravel中collection的作用是什么

發(fā)布時間:2021-08-03 11:58:30 來源:億速云 閱讀:415 作者:Leah 欄目:大數(shù)據(jù)

今天就跟大家聊聊有關(guān)laravel中collection的作用是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

pluck

public function getDeductCourse()
    {
        return TeacherFinanceLogModel::select(['order_id', 'period'])->where('type', 6)
            ->get()->pluck('period', 'order_id')->all();

    }

group map keyBy

public function getStudentCourseByUids($uids)
    {
        $studentCourse = $this->studentCourseModel
            ->select(['uid', 'grade_type', 'subject', 'period', 'old_period', 'period_total', 'finish_period', 'wait_period', 'total_free_period', 'free_period', 'wait_free_period'])
            ->whereIn('uid', $uids)
            ->get();

        return collect($studentCourse)->groupBy('uid')->map(function ($item) {
            return $item->keyBy(function ($value) {
                    return sprintf("%s-%s-%s", $value['uid'], $value['grade_type'], $value['subject']);
                })->toArray();
        })->toArray();
    }

filter

public function getRewardsAndPunishByUid($uids)
    {
        $rewardPunish = $this->courseRewardsModel
            ->select([
                "course.uid",
                "course.grade_type",
                "course.subject",
                "course.course_type",
                "course.period_type",
                "course.course_id",
                "course.tid",
                "course_rewards.s_rewards",
                "course_rewards.t_rewards",
                "course_rewards.s_option_status",
                "course_rewards.t_option_status"
            ])
            ->leftjoin("course", "course.course_id", "=", "course_rewards.course_id")
            ->whereIn('course.uid', $uids)
            ->where("course.course_type", 1)
            ->get();

        return collect($rewardPunish)->filter(function ($item) {
            return ($item->s_rewards == 1 || $item->s_rewards == -1) && $item->s_option_status != 1;
        })->groupBy('uid')->map(function ($item) {
            return [
                'reward_total' => $item->filter(function ($value) {
                    return $value->s_rewards == 1;
                })->sum('s_rewards'),
                'punish_total' => abs($item->filter(function ($value) {
                    return $value->s_rewards == -1;
                })->sum('s_rewards'))
            ];
        })->toArray();
    }

看完上述內(nèi)容,你們對laravel中collection的作用是什么有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI