3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class TestClass { public static $currentValue; public static function toValue($value) { self::$currentValue = $value; return __CLASS__; } public static function add($value) { self::$currentValue = self::$currentValue + $value; return __CLASS__; } public static function subtract($value) { self::$currentValue = self::$currentValue - $value; return __CLASS__; } public static function result() { return self::$currentValue; } } $value = TestClass::toValue(5)::add(3)::subtract(2)::add(8)::result(); echo $value;

This is an error 500

Value for `_results` contains invalid data `array`


preferences:
162.55 ms | 3281 KiB | 8 Q