fork(4) download
  1. <?php
  2.  
  3. class Foo {
  4. private $bar = 'bar';
  5. }
  6.  
  7. $f = new Foo();
  8. var_dump($f->bar);
Runtime error #stdin #stdout #stderr 0.02s 24400KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Cannot access private property Foo::$bar in /home/zTq6k1/prog.php on line 8