網路遊美國

 找回密碼
 立即註冊
搜索
熱搜: 活動 交友 discuz
查看: 26|回復: 0

[程式寫法] 評分的流程

[複製鏈接]
  • TA的每日心情
    鼓掌
    前天 03:42
  • 簽到天數: 546 天

    [LV.9]擔任課長

    894

    主題

    1624

    帖子

    1萬

    積分

    管理員

    Rank: 12Rank: 12Rank: 12

    積分
    10118

    站長程式達人支持烏克蘭

    發表於 2022-5-3 06:10:51 | 顯示全部樓層 |閱讀模式

    馬上註冊,結交更多好友,享用更多功能,讓你輕鬆玩轉社區。

    您需要 登錄 才可以下載或查看,沒有賬號?立即註冊

    x
    1.牽涉到三個文件
    forum.php
    source/template/dafault/forum/rate.htm
    source/module/forum/forum_misc.php




    2.流程

    rate.jpg
    經由上圖

    進入forum_misc.php文件中處理
    elseif($_GET['action'] == 'rate' && $_GET['pid']) {


    rate 為評分加減進行操作
    foreach($_G['group']['raterange'] as $id => $rating) {
                            $score = intval($_GET['score'.$id]);
                            if(isset($_G['setting']['extcredits'][$id]) && !empty($score)) {
                                    if($rating['isself'] && (intval($_G['member']['extcredits'.$id]) - $score < 0)) {
                                            showmessage('thread_rate_range_self_invalid', '', array('extcreditstitle' => $_G['setting']['extcredits'][$id]['title']));
                                    }
                                    if(abs($score) <= $maxratetoday[$id]) {
                                            if($score > $rating['max'] || $score < $rating['min']) {
                                                    showmessage('thread_rate_range_invalid');
                                            } else {
                                                    $creditsarray[$id] = $score;
                                                    if($rating['isself']) {
                                                            $sub_self_credit[$id] = -abs($score);
                                                    }
                                                    $rate += $score;
                                                    $ratetimes += ceil(max(abs($rating['min']), abs($rating['max'])) / 5);
                                            }
                                    } else {
                                            showmessage('thread_rate_ctrl');
                                    }
                            }

                    }



    給你鼓鼓掌~
    回復

    使用道具 舉報

    您需要登錄後才可以回帖 登錄 | 立即註冊

    本版積分規則

    Archiver|手機版|小黑屋|網路遊美國

    GMT+8, 2024-7-7 02:16 , Processed in 0.099418 second(s), 25 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2021, Tencent Cloud.

    快速回復 返回頂部 返回列表