3v4l.org

run code in 300+ PHP versions simultaneously
<?php $classNames = array( "Foo", // userland class "StdClass", // class defined by php-src, but still not considered as internal "Bar", // userland class implementing Serializable "ReflectionClass", // internal class "ArrayObject", // internal class implementing Serializable "Baz", // userland class extending internal class implementing Serializable ); function instanitateWithoutConstructorThroughUnserialize($className) { $class = new ReflectionClass($className); return unserialize( sprintf( '%s:%d:"%s":0:{}', (version_compare(PHP_VERSION, '5.4', '>') && $class->implementsInterface("Serializable") ? "C" : "O"), strlen($className), $className ) ); } function instanitateWithoutConstructorThroughReflection($className) { try { $ref = new ReflectionClass($className); return $ref->newInstanceWithoutConstructor(); } catch (ReflectionException $e) { return $e; } } class Foo {} class Bar implements Serializable { private $data; public function serialize() { return serialize($this->data); } public function unserialize($data) { $this->data = unserialize($data); } } class Baz extends ArrayObject {} foreach($classNames as $className) { echo "$className\n"; var_dump(instanitateWithoutConstructorThroughUnserialize($className)); if (version_compare(PHP_VERSION, '5.4.0') >= 0) { var_dump(instanitateWithoutConstructorThroughReflection($className)); } echo "\n"; }
Output for 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Deprecated: Bar implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /in/l0t3c on line 35 Foo object(Foo)#2 (0) { } object(Foo)#1 (0) { } StdClass object(stdClass)#2 (0) { } object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data":"Bar":private]=> bool(false) } object(Bar)#1 (1) { ["data":"Bar":private]=> NULL } ReflectionClass Fatal error: Uncaught Exception: Unserialization of 'ReflectionClass' is not allowed in /in/l0t3c:14 Stack trace: #0 /in/l0t3c(14): unserialize('O:15:"Reflectio...') #1 /in/l0t3c(51): instanitateWithoutConstructorThroughUnserialize('ReflectionClass') #2 {main} thrown in /in/l0t3c on line 14
Process exited with code 255.
Output for 8.1.0 - 8.1.27
Deprecated: Bar implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /in/l0t3c on line 35 Foo object(Foo)#2 (0) { } object(Foo)#1 (0) { } StdClass object(stdClass)#2 (0) { } object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data":"Bar":private]=> bool(false) } object(Bar)#1 (1) { ["data":"Bar":private]=> NULL } ReflectionClass Fatal error: Uncaught Exception: Unserialization of 'ReflectionClass' is not allowed in /in/l0t3c:19 Stack trace: #0 /in/l0t3c(19): unserialize('O:15:"Reflectio...') #1 /in/l0t3c(51): instanitateWithoutConstructorThroughUnserialize('ReflectionClass') #2 {main} thrown in /in/l0t3c on line 19
Process exited with code 255.
Output for 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
Foo object(Foo)#2 (0) { } object(Foo)#1 (0) { } StdClass object(stdClass)#2 (0) { } object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data":"Bar":private]=> bool(false) } object(Bar)#1 (1) { ["data":"Bar":private]=> NULL } ReflectionClass Warning: Erroneous data format for unserializing 'ReflectionClass' in /in/l0t3c on line 19 Notice: unserialize(): Error at offset 26 of 27 bytes in /in/l0t3c on line 19 bool(false) object(ReflectionClass)#2 (1) { ["name"]=> string(0) "" } ArrayObject object(ArrayObject)#1 (1) { ["storage":"ArrayObject":private]=> array(0) { } } object(ArrayObject)#2 (1) { ["storage":"ArrayObject":private]=> array(0) { } } Baz object(Baz)#1 (1) { ["storage":"ArrayObject":private]=> array(0) { } } object(Baz)#2 (1) { ["storage":"ArrayObject":private]=> array(0) { } }
Output for 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.5 - 7.2.33, 7.3.12 - 7.3.33
Foo object(Foo)#2 (0) { } object(Foo)#1 (0) { } StdClass object(stdClass)#2 (0) { } object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data":"Bar":private]=> bool(false) } object(Bar)#1 (1) { ["data":"Bar":private]=> NULL } ReflectionClass object(ReflectionClass)#2 (1) { ["name"]=> string(0) "" } object(ReflectionClass)#1 (1) { ["name"]=> string(0) "" } ArrayObject object(ArrayObject)#2 (1) { ["storage":"ArrayObject":private]=> array(0) { } } object(ArrayObject)#1 (1) { ["storage":"ArrayObject":private]=> array(0) { } } Baz object(Baz)#2 (1) { ["storage":"ArrayObject":private]=> array(0) { } } object(Baz)#1 (1) { ["storage":"ArrayObject":private]=> array(0) { } }
Output for 5.4.14 - 5.4.45, 5.5.24 - 5.5.35
Foo object(Foo)#2 (0) { } object(Foo)#1 (0) { } StdClass object(stdClass)#2 (0) { } object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data":"Bar":private]=> bool(false) } object(Bar)#1 (1) { ["data":"Bar":private]=> NULL } ReflectionClass object(ReflectionClass)#2 (1) { ["name"]=> string(0) "" } object(ReflectionException)#1 (7) { ["message":protected]=> string(103) "Class ReflectionClass is an internal class that cannot be instantiated without invoking its constructor" ["string":"Exception":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/l0t3c" ["line":protected]=> int(27) ["trace":"Exception":private]=> array(2) { [0]=> array(6) { ["file"]=> string(9) "/in/l0t3c" ["line"]=> int(27) ["function"]=> string(29) "newInstanceWithoutConstructor" ["class"]=> string(15) "ReflectionClass" ["type"]=> string(2) "->" ["args"]=> array(0) { } } [1]=> array(4) { ["file"]=> string(9) "/in/l0t3c" ["line"]=> int(53) ["function"]=> string(46) "instanitateWithoutConstructorThroughReflection" ["args"]=> array(1) { [0]=> string(15) "ReflectionClass" } } } ["previous":"Exception":private]=> NULL } ArrayObject Fatal error: Uncaught exception 'UnexpectedValueException' with message 'Empty serialized string cannot be empty' in /in/l0t3c:21 Stack trace: #0 [internal function]: ArrayObject->unserialize('') #1 /in/l0t3c(21): unserialize('C:11:"ArrayObje...') #2 /in/l0t3c(51): instanitateWithoutConstructorThroughUnserialize('ArrayObject') #3 {main} thrown in /in/l0t3c on line 21
Process exited with code 255.
Output for 5.4.0 - 5.4.13
Foo object(Foo)#2 (0) { } object(Foo)#1 (0) { } StdClass object(stdClass)#2 (0) { } object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data":"Bar":private]=> bool(false) } object(Bar)#1 (1) { ["data":"Bar":private]=> NULL } ReflectionClass object(ReflectionClass)#2 (1) { ["name"]=> string(0) "" } object(ReflectionException)#1 (7) { ["message":protected]=> string(103) "Class ReflectionClass is an internal class that cannot be instantiated without invoking its constructor" ["string":"Exception":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/l0t3c" ["line":protected]=> int(27) ["trace":"Exception":private]=> array(2) { [0]=> array(6) { ["file"]=> string(9) "/in/l0t3c" ["line"]=> int(27) ["function"]=> string(29) "newInstanceWithoutConstructor" ["class"]=> string(15) "ReflectionClass" ["type"]=> string(2) "->" ["args"]=> array(0) { } } [1]=> array(4) { ["file"]=> string(9) "/in/l0t3c" ["line"]=> int(53) ["function"]=> string(46) "instanitateWithoutConstructorThroughReflection" ["args"]=> array(1) { [0]=> string(15) "ReflectionClass" } } } ["previous":"Exception":private]=> NULL } ArrayObject Notice: unserialize(): Error at offset 22 of 23 bytes in /in/l0t3c on line 21 Fatal error: Uncaught exception 'UnexpectedValueException' with message 'Empty serialized string cannot be empty' in /in/l0t3c:21 Stack trace: #0 [internal function]: ArrayObject->unserialize('') #1 /in/l0t3c(21): unserialize('C:11:"ArrayObje...') #2 /in/l0t3c(51): instanitateWithoutConstructorThroughUnserialize('ArrayObject') #3 {main} thrown in /in/l0t3c on line 21
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Foo object(Foo)#2 (0) { } StdClass object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data":"Bar":private]=> NULL } ReflectionClass object(ReflectionClass)#1 (1) { ["name"]=> string(0) "" } ArrayObject object(ArrayObject)#2 (1) { ["storage":"ArrayObject":private]=> array(0) { } } Baz object(Baz)#1 (1) { ["storage":"ArrayObject":private]=> array(0) { } }
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Foo object(Foo)#2 (0) { } StdClass object(stdClass)#1 (0) { } Bar object(Bar)#2 (1) { ["data:private"]=> NULL } ReflectionClass object(ReflectionClass)#1 (1) { ["name"]=> string(0) "" } ArrayObject object(ArrayObject)#2 (0) { } Baz object(Baz)#1 (0) { }
Output for 5.0.5
Fatal error: Interface 'Serializable' not found in /in/l0t3c on line 35
Process exited with code 255.
Output for 5.0.0 - 5.0.4
Fatal error: Class 'Serializable' not found in /in/l0t3c on line 35
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected '{' in /in/l0t3c on line 25
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected '{' in /in/l0t3c on line 25
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/l0t3c on line 25
Process exited with code 255.

preferences:
190.29 ms | 401 KiB | 309 Q