fork download
  1. <?php
  2.  
  3. class A
  4. {
  5. private $text = 5;
  6. public function getText()
  7. {
  8. echo $this->text;
  9. }
  10. }
  11.  
  12. $example = new A;
  13. $example->getText();
  14. // your code goes here
Success #stdin #stdout 0.02s 82880KB
stdin
Standard input is empty
stdout
5