fork download
  1. <?php
  2.  
  3. class Foo
  4. {
  5. private function __get($name)
  6. {
  7.  
  8. }
  9.  
  10. private function __set($name, $value)
  11. {
  12.  
  13. }
  14. }
  15.  
  16. $foo = new Foo;
  17. $foo->bar = 'baz';
Success #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Warning:  The magic method __get() must have public visibility and cannot be static in /home/xq7fyX/prog.php on line 5
PHP Warning:  The magic method __set() must have public visibility and cannot be static in /home/xq7fyX/prog.php on line 10