3v4l.org

run code in 300+ PHP versions simultaneously
<?php class World { static $id = 0; protected $uid; protected $worldName; const type = 'world'; public function __construct( $worldName ) { $this->setUID(); $this->worldName = $worldName; } private function setUID() { $this->uid = self::$id++; } public function whoIsPerson( Person $person ) { $personUID = $person->getUID(); if( $personUID === 0 && $this->worldName === 'Rapture' ) return $this->personIDMessage( $personUID, $this->worldName, 'Jack' ); elseif( $personUID === 0 && $this->worldName === 'Columbia' ) return $this->personIDMessage( $personUID, $this->worldName, 'Elizabeth' ); else return 'Unknown Person'; } private function personIDMessage( $id, $world, $name) { $worldUID = $this->worldUID; return "Person $id in world $world($worldUID) is $name \n"; } } class Person { static $id = 0; protected $uid; public function __construct() { $this->setUID(); } private function setUID() { $this->uid = self::$id++; } public function getUID() { return $this->uid; } } $person1 = new Person(); $world1 = new World('Rapture'); echo $world1->whoIsPerson( $person1 ); $world2 = new World('Columbia'); echo $world2->whoIsPerson( $person1 );
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined property: World::$worldUID in /in/QMM6l on line 29 Person 0 in world Rapture() is Jack Warning: Undefined property: World::$worldUID in /in/QMM6l on line 29 Person 0 in world Columbia() is Elizabeth

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:
39.04 ms | 401 KiB | 8 Q