fork download
  1. <?php
  2. class Mmm
  3. {
  4.  
  5. public $a = 5;
  6.  
  7. }
  8.  
  9. $x = new Mmm();
  10. echo $x->a;
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
5