<?php

// archive-ipq-co.narod.ru
error_reporting(-1);

class Question
{
    public $text;           // текст вопроса
    public $points = 5;     // число баллов, по умолчанию 5
    public $answers;        // варианты ответов
    public $correctAnswer;  // правильный ответ
}



function createQuestions()
{
    $questions = array();
 
    $q = new Question;
    $q->text = "how do i shot web?";
    $q->answers = array("a"=>"I dunno, lol", 'b'=> "it's Ez");
    $q->correctAnswer = 'b';
    // Кладем вопрос в массив
    $questions[] = $q;
 
    $q = new Question;
    $q->text = "Теперь понятно?";
    $q->points = 999;
    $q->answers = array('a'=>"Да, няша", 'b'=>'я нихуя не понел');
    $q->correctAnswer = 'a';
    $questions[] = $q;
 
    return $questions;
}

var_dump(createQuestions());
