fork download
  1. <?php
  2. class aa
  3. {
  4. public function func()
  5. {
  6. $this->$bb = 'ああああああ';
  7. $b = 'test2';
  8.  
  9. return $b;
  10. }
  11.  
  12. // 追加
  13. public $c = 1;
  14. }
  15. $x = new aa();
  16. echo $x->func();
  17. echo $x->$c;
Success #stdin #stdout #stderr 0.02s 23508KB
stdin
Standard input is empty
stdout
test2ああああああ
stderr
PHP Notice:  Undefined variable: bb in /home/11yQqk/prog.php on line 6
PHP Notice:  Undefined variable: c in /home/11yQqk/prog.php on line 17