當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Pool::GetUserPickCorrectStatus方法代碼示例

本文整理匯總了PHP中Pool::GetUserPickCorrectStatus方法的典型用法代碼示例。如果您正苦於以下問題:PHP Pool::GetUserPickCorrectStatus方法的具體用法?PHP Pool::GetUserPickCorrectStatus怎麽用?PHP Pool::GetUserPickCorrectStatus使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Pool的用法示例。


在下文中一共展示了Pool::GetUserPickCorrectStatus方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: foreach

        $category_counter = 1;
        ?>
            <h3><?php 
        echo $nickname;
        ?>
's Picks:</h3>
<?php 
        foreach ($pool_category_fetch as $category_id => $category_info) {
            //generate list of categories for pool and populate the given user's picks for each category
            $incorrect_by_default = 0;
            //reset incorrect_by_default variable if it was previously equal to 1
            if (isset($user_picks_fetch[$category_id])) {
                //if a pick already exists for given category, we store it in the pick_display_value variable
                $user_pick_explode_array = explode('|', $user_picks_fetch[$category_id]);
                $pick_display_value = $user_pick_explode_array[0];
                $answer_correct = $pool->GetUserPickCorrectStatus($category_id, $user_id, $pool_id);
            } else {
                //if no pick exists for the given category:
                $pick_display_value = "**No Pick made**";
                $incorrect_by_default = 1;
                //set incorrect_by_default variable to 1 - this signifies that we are marking the user's lack of answer as "incorrect"
                $answer_correct = 0;
                $category_div_background_color = "#d9534f";
                //set div background color to be red by default if no pick was made
                //$pool->ScorePickManually($category_id, $user_id, $pool_id, 0);
            }
            //BEGIN CODE FOR CORRECT VS. INCORRECT DISPLAYS ON PAGE
            if (isset($answer_correct)) {
                //if the pick has already been scored by the leader:
                if ($answer_correct == 0) {
                    //if pick has been marked as wrong:
開發者ID:epsilon670,項目名稱:Poolski,代碼行數:31,代碼來源:score_pool_manual.php


注:本文中的Pool::GetUserPickCorrectStatus方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。