fork(73) download
  1. <?php
  2.  
  3. // archive-ipq-co.narod.ru
  4.  
  5. class Question
  6. {
  7. public $text; // текст вопроса
  8. public $points = 5; // число баллов, по умолчанию 5
  9. public $answers; // варианты ответов
  10. public $correctAnswer; // правильный ответ
  11. }
  12.  
  13. // Создадим три объекта (так как у нас будет 3 вопроса в тесте), и сохраним их в трех переменных:
  14. $q1 = new Question;
  15. $q2 = new Question;
  16. $q3 = new Question;
  17.  
  18. // Выведем содержимое первого объекта
  19. var_dump($q1);
  20.  
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
object(Question)#1 (4) {
  ["text"]=>
  NULL
  ["points"]=>
  int(5)
  ["answers"]=>
  NULL
  ["correctAnswer"]=>
  NULL
}