本文整理匯總了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: