<?php class MyClass { public static $default_test = 'foo'; public $test; public function __construct() { $this->test = self::$default_test; } public function example() { return $this->test; } } MyClass::$default_test = 'bar'; $test = new MyClass(); echo $test->example(), PHP_EOL; MyClass::$default_test = 'hello'; $test = new MyClass(); echo $test->example();
You have javascript disabled. You will not be able to edit any code.