3v4l.org

run code in 300+ PHP versions simultaneously
<?php //this seems to work as if there is 2 variables both a protected static and a protected non-static class foo { protected static $myvar = 999; //Uncommenting below leads to a Cannot redeclare foo::$myvar //public $myvar = 77; //Normal non-static Instance Functions public function __construct(){} public function instancePrintVar(){ echo __FUNCTION__.' '.$this->myvar; } public function instanceSetVar($v){ $this->myvar = $v; } //Static functions public static function staticPrintVar(){ echo __FUNCTION__.' '.self::$myvar; } public static function staticSetVar($v){ self::$myvar = $v; } } function nl(){ echo "\n"; } foo::staticPrintVar(); nl(); $foo = new foo(); $foo->instanceSetVar(3); $foo->instancePrintVar(); nl(); foo::staticPrintVar(); nl(); $foo::staticPrintVar(); nl(); foo::staticSetVar(888); foo::staticPrintVar(); $foo->instancePrintVar(); echo "Conclusion: when using \$this-> to change the value, it adds another non-static version rather than changing the static version";
Output for git.master, git.master_jit, rfc.property-hooks
staticPrintVar 999 Notice: Accessing static property foo::$myvar as non static in /in/4KuhD on line 17 Deprecated: Creation of dynamic property foo::$myvar is deprecated in /in/4KuhD on line 17 Notice: Accessing static property foo::$myvar as non static in /in/4KuhD on line 14 instancePrintVar 3 staticPrintVar 999 staticPrintVar 999 staticPrintVar 888 Notice: Accessing static property foo::$myvar as non static in /in/4KuhD on line 14 instancePrintVar 3Conclusion: when using $this-> to change the value, it adds another non-static version rather than changing the static version

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:
55.74 ms | 402 KiB | 8 Q