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($s=get_class_methods($o)&&in_array($a=current($m).$p,$s))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 Exception in /in/WhlCE:16 Stack trace: #0 /in/WhlCE(30): P->r(Object(A), 'a') #1 {main} thrown in /in/WhlCE on line 16
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:
49.8 ms | 401 KiB | 8 Q