3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Everything you enter here will be executed by our servers. Try it! class A { private $a; private $b; public function __construct() { $this->a = 1; $this->b = 2; } public function __get($name) { switch ($name) { // protected: case 'a': return $this->a; break; // public case 'b': return $this->b; break; } } } class B extends A { public function getA() { return $this->a; } } $B = new B(); echo $B->b; // valid echo $B->a; // shouldn't be possible echo $B->getA(); // valid
Output for git.master, git.master_jit, rfc.property-hooks
211

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.49 ms | 401 KiB | 8 Q