本文整理汇总了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: