当前位置: 首页>>代码示例>>PHP>>正文


PHP Quiz::getQuestions方法代码示例

本文整理汇总了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;
开发者ID:Jessicasoon,项目名称:ProjectKentRidgeV2,代码行数:31,代码来源:modifyQuizMain.php

示例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;
			}
开发者ID:hienvuong,项目名称:Quizroo,代码行数:30,代码来源:quizDetailDisplay.php


注:本文中的Quiz::getQuestions方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。