3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { static $something = 'yes'; public static function doStuff($var = false) { if($var) { return 'no'; } return $this->something; } } var_dump(A::doStuff(false)); var_dump(A::doStuff(true));

preferences:
34.03 ms | 402 KiB | 5 Q