3v4l.org

run code in 300+ PHP versions simultaneously
<?php phpversion() >= "7.0.0" or die(); class FooBar { private $x; public $y; public function __construct() { var_dump($this); echo "Let's remove a property!", PHP_EOL; unset($this->x); unset($this->y); var_dump($this); echo "Let's add a property!", PHP_EOL; $this->x = 2; $this->y = 3; $this->z = 4; var_dump($this); echo "Where did the private come from?", PHP_EOL; } } $foobar = new Foobar;
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.25, 7.3.0 - 7.3.12, 7.4.0
object(FooBar)#1 (2) { ["x":"FooBar":private]=> NULL ["y"]=> NULL } Let's remove a property! object(FooBar)#1 (0) { } Let's add a property! object(FooBar)#1 (3) { ["x":"FooBar":private]=> int(2) ["y"]=> int(3) ["z"]=> int(4) } Where did the private come from?
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28

preferences:
88.21 ms | 402 KiB | 77 Q