3v4l.org

run code in 300+ PHP versions simultaneously
<?php class P { function r($o,$p) { if($v=get_object_vars($o)&&@$v=$v[$p]) return$v; $m=['set','get','has','is','_']; do { if(method_exists($o,$a=current($m).$p))return$o->$a(); } while(next($m)); throw new Exception(); } } class A { private $a = 'hello'; protected function getA() { return $this->a; } } $a = new A(); $p = new P(); echo $p->r($a, 'a');
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to protected method A::geta() from scope P in /in/PbM53:13 Stack trace: #0 /in/PbM53(30): P->r(Object(A), 'a') #1 {main} thrown in /in/PbM53 on line 13
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
37.48 ms | 401 KiB | 8 Q