当前位置: 首页>>代码示例>>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;未经允许,请勿转载。