fork download
  1. <?php
  2.  
  3. class A {
  4.  
  5. function something() {
  6. $this->dqwidjoqiwdqj = 123;
  7. var_dump($this->dqwidjoqiwdqj);
  8. }
  9.  
  10. }
  11.  
  12. $a = new A();
  13. $a->something(); // 123
  14. var_dump($a->dqwidjoqiwdqj);
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
int(123)
int(123)