本文整理汇总了PHP中Quiz::getQuestions方法的典型用法代码示例。如果您正苦于以下问题:PHP Quiz::getQuestions方法的具体用法?PHP Quiz::getQuestions怎么用?PHP Quiz::getQuestions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Quiz
的用法示例。
在下文中一共展示了Quiz::getQuestions方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
if ($row_resultMode['display_mode'] == "test_simple") {
$mode = "test_simple";
}
if ($row_resultMode['display_mode'] == "test_custom") {
$mode = "test_custom";
}
} while ($row_resultMode = mysql_fetch_assoc($resultMode));
// $mode = "simple"; //LIEN SIMPLE
// check the number of results
if ($mode == "simple" || $mode == "accurate") {
$numResults = $quiz->getResultsMulti("count");
} else {
$numResults = $quiz->getResultsTest("count");
}
// check the number of questions
$numQuestions = $quiz->getQuestions("count");
// check the number of options
$listQuestion = explode(',', $quiz->getQuestions());
$totalOptions = 0;
if ($numQuestions != 0) {
$questionState = true;
$optionState = true;
foreach ($listQuestion as $question) {
// check the number of options for this question
if ($mode == "simple" || $mode == "accurate") {
$numOptions = $quiz->getOptionsMulti($question, "count");
} else {
$numOptions = $quiz->getOptionsTest($question, "count");
}
if ($numOptions < $VAR_QUIZ_MIN_OPTIONS) {
$optionState = false;
示例2: explode
if($quiz->exists()){
// check if member is the owner of this quiz
if($quiz->isOwner($member->id)){
// prepare the formatted status
switch($quiz->isPublished){
case 0: $status = '<span class="draft">Unpublished Draft</span>'; break;
case 1: $status = '<span class="published">Published</span>'; break;
case 2: $status = '<span class="modified">Unpublished Modification</span>'; break;
case 3: $status = '<span class="archived">Archived</span>'; break;
default: $status = 'Limbo :/'; break;
}
// get average options
// check the number of questions
$numQuestions = $quiz->getQuestions("count");
// check the number of options
$listQuestion = explode(',', $quiz->getQuestions());
$totalOptions = 0;
if($numQuestions != 0){
$questionState = true;
$optionState = true;
foreach($listQuestion as $question){
// check the number of options for this question
$numOptions = $quiz->getOptions($question, "count");
if($numOptions < $VAR_QUIZ_MIN_OPTIONS){
$optionState = false;
}
$totalOptions += $numOptions;
}