PHP - Classes and Objects
What will be the output of this PHP code?
class Test {
public static $value = 5;
public static function increment() {
self::$value++;
}
}
Test::increment();
Test::increment();
echo Test::$value;