fork download
  1. <?php
  2. class Question {
  3. public $text;
  4. public $answers;
  5. public $point = 5;
  6. public $correctAnswer;
  7. }
  8.  
  9. $q1 = new Question;
  10. $q2 = new Question;
  11. $q3 = new Question;
  12.  
  13.  
  14. echo $q1->point;
  15. ?>
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
5