3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Singleton{ private static $instance; private function __construct(){} public static function instance() { if (is_null(self::$instance)){ self::$instance = new static; } return self::$instance; } } $obj1 = Singleton::instance(); $obj2 = Singleton::instance(); var_dump(spl_object_hash($obj1), spl_object_hash($obj2)); $closure = function(){ return clone self::$instance; }; $cloner = $closure->bind($obj1, 'private'); $obj3 = $cloner(); var_dump(spl_object_hash($obj3));
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
string(32) "00000000000000010000000000000000" string(32) "00000000000000010000000000000000" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.17, 8.0.30
string(32) "000000007ca47a1c00000000526729ac" string(32) "000000007ca47a1c00000000526729ac" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.29
string(32) "000000003216e518000000006f18d971" string(32) "000000003216e518000000006f18d971" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.28
string(32) "000000005fa5d21b000000004333e235" string(32) "000000005fa5d21b000000004333e235" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.27
string(32) "0000000054bb310c0000000065b83438" string(32) "0000000054bb310c0000000065b83438" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.26
string(32) "000000002317f3230000000016b419a5" string(32) "000000002317f3230000000016b419a5" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.25
string(32) "00000000418944de000000004a757215" string(32) "00000000418944de000000004a757215" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.24
string(32) "0000000036bd9cae0000000025bff917" string(32) "0000000036bd9cae0000000025bff917" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.23
string(32) "000000003ba75aa0000000002e84b97e" string(32) "000000003ba75aa0000000002e84b97e" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.22
string(32) "000000006512d3f9000000000527613a" string(32) "000000006512d3f9000000000527613a" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.21
string(32) "0000000033c72ae3000000001b72cf40" string(32) "0000000033c72ae3000000001b72cf40" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.20
string(32) "0000000079ac6321000000004a4dad24" string(32) "0000000079ac6321000000004a4dad24" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.19
string(32) "0000000046593371000000004fd0e132" string(32) "0000000046593371000000004fd0e132" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.18
string(32) "00000000274e9808000000004b3c6704" string(32) "00000000274e9808000000004b3c6704" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.16
string(32) "00000000193f48080000000071789215" string(32) "00000000193f48080000000071789215" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.15
string(32) "0000000052ebd7bf00000000073a8912" string(32) "0000000052ebd7bf00000000073a8912" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.14
string(32) "000000006c3f676b00000000255702ae" string(32) "000000006c3f676b00000000255702ae" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.13
string(32) "000000007b28ce38000000005eabc5c6" string(32) "000000007b28ce38000000005eabc5c6" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.12
string(32) "000000001996ebb40000000041aebc9b" string(32) "000000001996ebb40000000041aebc9b" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.11
string(32) "0000000019a696290000000021050ada" string(32) "0000000019a696290000000021050ada" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.10
string(32) "000000004c04f02c0000000063387fa3" string(32) "000000004c04f02c0000000063387fa3" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.9
string(32) "000000002a3c437c000000004afae535" string(32) "000000002a3c437c000000004afae535" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.8
string(32) "000000004843a578000000000e10cd04" string(32) "000000004843a578000000000e10cd04" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.7
string(32) "000000007e7c5fb6000000003360a64a" string(32) "000000007e7c5fb6000000003360a64a" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.6
string(32) "0000000068eb64ef000000002a41c638" string(32) "0000000068eb64ef000000002a41c638" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.5
string(32) "000000001c87906e0000000038f574da" string(32) "000000001c87906e0000000038f574da" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.3
string(32) "000000003a6b7bb3000000004bf6da54" string(32) "000000003a6b7bb3000000004bf6da54" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.2
string(32) "0000000047a8fd7500000000651d19ce" string(32) "0000000047a8fd7500000000651d19ce" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.1
string(32) "00000000199954020000000017f96f68" string(32) "00000000199954020000000017f96f68" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 8.0.0
string(32) "0000000038cb0a82000000005fd29dc6" string(32) "0000000038cb0a82000000005fd29dc6" Fatal error: Uncaught TypeError: Closure::bind(): Argument #1 ($closure) must be of type Closure, Singleton given in /in/bRJoT:42 Stack trace: #0 /in/bRJoT(42): Closure::bind(Object(Singleton), 'private') #1 {main} thrown in /in/bRJoT on line 42
Process exited with code 255.
Output for 7.4.33
string(32) "000000003b9e37f9000000006a6cc926" string(32) "000000003b9e37f9000000006a6cc926" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.32
string(32) "0000000049e500a70000000045e579b7" string(32) "0000000049e500a70000000045e579b7" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.30
string(32) "000000000890b17f0000000059353b56" string(32) "000000000890b17f0000000059353b56" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.29
string(32) "000000003624572f000000005b42798c" string(32) "000000003624572f000000005b42798c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.28
string(32) "000000007f94dc9a0000000054870d21" string(32) "000000007f94dc9a0000000054870d21" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.27
string(32) "000000000bbb2c8a0000000044522cde" string(32) "000000000bbb2c8a0000000044522cde" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.26
string(32) "000000001086996b000000000a46ada8" string(32) "000000001086996b000000000a46ada8" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.25
string(32) "000000005131935600000000213d3ab6" string(32) "000000005131935600000000213d3ab6" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.24
string(32) "000000006c3c8abc0000000043ea5e2c" string(32) "000000006c3c8abc0000000043ea5e2c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.23
string(32) "00000000214bc1b2000000005b510020" string(32) "00000000214bc1b2000000005b510020" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.22
string(32) "000000001fcfda4000000000514a817d" string(32) "000000001fcfda4000000000514a817d" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.21
string(32) "000000002439a522000000005f385a19" string(32) "000000002439a522000000005f385a19" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.20
string(32) "000000006632c7500000000015852f3a" string(32) "000000006632c7500000000015852f3a" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.16
string(32) "000000000c016fcb0000000031918ec6" string(32) "000000000c016fcb0000000031918ec6" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.15
string(32) "0000000015c0ef8d0000000043f1596d" string(32) "0000000015c0ef8d0000000043f1596d" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.14
string(32) "000000007b3413cb000000001481c983" string(32) "000000007b3413cb000000001481c983" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.13
string(32) "000000005e7d1ca2000000004244c949" string(32) "000000005e7d1ca2000000004244c949" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.12
string(32) "0000000021beb3460000000018e25f4e" string(32) "0000000021beb3460000000018e25f4e" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.11
string(32) "00000000440c78ae0000000022d0cbef" string(32) "00000000440c78ae0000000022d0cbef" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.10
string(32) "000000001b2cb27200000000653bc092" string(32) "000000001b2cb27200000000653bc092" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.9
string(32) "0000000012f1d61900000000216b03e0" string(32) "0000000012f1d61900000000216b03e0" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.8
string(32) "0000000002179676000000007aca044b" string(32) "0000000002179676000000007aca044b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.7
string(32) "000000000c1bb7ee000000003ee8b3e4" string(32) "000000000c1bb7ee000000003ee8b3e4" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.6
string(32) "0000000003abb295000000004ca8d50c" string(32) "0000000003abb295000000004ca8d50c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.5
string(32) "0000000022abf60d000000002acd4a19" string(32) "0000000022abf60d000000002acd4a19" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.4
string(32) "000000004bbe5254000000007ac00eea" string(32) "000000004bbe5254000000007ac00eea" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.3
string(32) "0000000071006e8b000000005b18a527" string(32) "0000000071006e8b000000005b18a527" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.4.0
string(32) "000000006a293257000000001806d712" string(32) "000000006a293257000000001806d712" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.33
string(32) "0000000032d4128b000000001c34dc29" string(32) "0000000032d4128b000000001c34dc29" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.32
string(32) "00000000789e3aeb000000002e6c0ebe" string(32) "00000000789e3aeb000000002e6c0ebe" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.31
string(32) "0000000004f025900000000011436095" string(32) "0000000004f025900000000011436095" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.30
string(32) "000000007a31dcf1000000000dceed76" string(32) "000000007a31dcf1000000000dceed76" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.29
string(32) "000000001a77006800000000441dec78" string(32) "000000001a77006800000000441dec78" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.28
string(32) "0000000002bcac7a000000007bc24134" string(32) "0000000002bcac7a000000007bc24134" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.27
string(32) "0000000054f180ed000000003187c354" string(32) "0000000054f180ed000000003187c354" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.26
string(32) "0000000017e5607d000000000e385100" string(32) "0000000017e5607d000000000e385100" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.25
string(32) "000000005f5c57d400000000543a3405" string(32) "000000005f5c57d400000000543a3405" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.24
string(32) "00000000728fc4c000000000653f9291" string(32) "00000000728fc4c000000000653f9291" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.23
string(32) "0000000036b8ebaf00000000724922b6" string(32) "0000000036b8ebaf00000000724922b6" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.21
string(32) "0000000005bf156e00000000753d80da" string(32) "0000000005bf156e00000000753d80da" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.20
string(32) "0000000022ef6a59000000001f6eab89" string(32) "0000000022ef6a59000000001f6eab89" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.19
string(32) "000000007cc714b8000000001cb66200" string(32) "000000007cc714b8000000001cb66200" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.18
string(32) "00000000563e2b370000000007e024ee" string(32) "00000000563e2b370000000007e024ee" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.17
string(32) "000000000ce9405f000000000f7a831f" string(32) "000000000ce9405f000000000f7a831f" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.16
string(32) "000000003f9d918c0000000050b9ea55" string(32) "000000003f9d918c0000000050b9ea55" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.3.12
string(32) "000000007b836cc60000000013df3051" string(32) "000000007b836cc60000000013df3051" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.2.33
string(32) "0000000018cdf32900000000192bd658" string(32) "0000000018cdf32900000000192bd658" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.2.32
string(32) "000000004bb81c7e000000005a2c3ad8" string(32) "000000004bb81c7e000000005a2c3ad8" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.2.31
string(32) "000000003d073e740000000053198742" string(32) "000000003d073e740000000053198742" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.2.30
string(32) "0000000042ade94e000000006d2de92b" string(32) "0000000042ade94e000000006d2de92b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.2.29
string(32) "0000000000519a50000000006fa33a30" string(32) "0000000000519a50000000006fa33a30" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.2.6
string(32) "000000007cfac6f40000000048bf5c90" string(32) "000000007cfac6f40000000048bf5c90" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.1.20
string(32) "000000004accbb4000000000496f4c22" string(32) "000000004accbb4000000000496f4c22" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.1.7
string(32) "000000004229cd12000000003f681195" string(32) "000000004229cd12000000003f681195" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.1.6
string(32) "000000000a6299ee000000007fe14b7d" string(32) "000000000a6299ee000000007fe14b7d" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.1.5
string(32) "0000000075c17246000000005cb79143" string(32) "0000000075c17246000000005cb79143" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.1.0
string(32) "00000000083e0683000000004ae73473" string(32) "00000000083e0683000000004ae73473" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.20
string(32) "000000007db858d70000000023a9f66c" string(32) "000000007db858d70000000023a9f66c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.14
string(32) "000000007ce0a384000000007a6c7543" string(32) "000000007ce0a384000000007a6c7543" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.10
string(32) "0000000031daa362000000005904cb56" string(32) "0000000031daa362000000005904cb56" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.9
string(32) "000000002de28b6600000000336cb4ff" string(32) "000000002de28b6600000000336cb4ff" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.8
string(32) "000000007f4f54a10000000067de1b69" string(32) "000000007f4f54a10000000067de1b69" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.7
string(32) "000000000616bcaf0000000021127f2e" string(32) "000000000616bcaf0000000021127f2e" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.6
string(32) "000000000714d13a0000000002ebcc0d" string(32) "000000000714d13a0000000002ebcc0d" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.5
string(32) "0000000064aa98a9000000003aefe0ab" string(32) "0000000064aa98a9000000003aefe0ab" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.4
string(32) "000000005f72b8390000000055a0db5c" string(32) "000000005f72b8390000000055a0db5c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.3
string(32) "0000000049945031000000006311a405" string(32) "0000000049945031000000006311a405" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.2
string(32) "0000000019fe13020000000060acc769" string(32) "0000000019fe13020000000060acc769" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.1
string(32) "00000000748e315e0000000070f2b5cf" string(32) "00000000748e315e0000000070f2b5cf" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 7.0.0
string(32) "000000003d818fbb0000000034daac13" string(32) "000000003d818fbb0000000034daac13" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/bRJoT:44 Stack trace: #0 {main} thrown in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.28
string(32) "000000004f8af7b000000000252d1f94" string(32) "000000004f8af7b000000000252d1f94" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.25
string(32) "00000000212ba4bd0000000052a39058" string(32) "00000000212ba4bd0000000052a39058" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.24
string(32) "000000000db8614400000000419046d4" string(32) "000000000db8614400000000419046d4" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.23
string(32) "000000005707c529000000006d9f9567" string(32) "000000005707c529000000006d9f9567" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.22
string(32) "000000002819ba55000000001053955c" string(32) "000000002819ba55000000001053955c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.21
string(32) "000000007a6a348b000000003a6afa2f" string(32) "000000007a6a348b000000003a6afa2f" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.20
string(32) "0000000066d4911100000000694a109f" string(32) "0000000066d4911100000000694a109f" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.19
string(32) "000000007f6e2cdf000000000c86ad51" string(32) "000000007f6e2cdf000000000c86ad51" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.18
string(32) "00000000063af5dd000000005632902b" string(32) "00000000063af5dd000000005632902b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.17
string(32) "0000000046a82c7b0000000057687de7" string(32) "0000000046a82c7b0000000057687de7" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.16
string(32) "000000002267a97d000000004634eba1" string(32) "000000002267a97d000000004634eba1" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.15
string(32) "000000001077680b00000000280c5dcc" string(32) "000000001077680b00000000280c5dcc" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.14
string(32) "00000000004852d30000000076119c64" string(32) "00000000004852d30000000076119c64" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.13
string(32) "000000002d92db760000000039441a8c" string(32) "000000002d92db760000000039441a8c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.12
string(32) "0000000043230e56000000001a6986e5" string(32) "0000000043230e56000000001a6986e5" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.11
string(32) "00000000773f567d00000000185b824d" string(32) "00000000773f567d00000000185b824d" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.10
string(32) "0000000076e114cf00000000310e5fea" string(32) "0000000076e114cf00000000310e5fea" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.9
string(32) "0000000030be3666000000007fd7a600" string(32) "0000000030be3666000000007fd7a600" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.8
string(32) "000000004bfb70dd000000001410c318" string(32) "000000004bfb70dd000000001410c318" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.7
string(32) "000000003cd98775000000007e5928a5" string(32) "000000003cd98775000000007e5928a5" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.6
string(32) "000000002498013d000000000f543451" string(32) "000000002498013d000000000f543451" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.5
string(32) "00000000202e9308000000000f485d49" string(32) "00000000202e9308000000000f485d49" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.4
string(32) "00000000312c153b0000000006f5a634" string(32) "00000000312c153b0000000006f5a634" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.3
string(32) "00000000539c123000000000703b2f81" string(32) "00000000539c123000000000703b2f81" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.2
string(32) "000000005af0bc640000000038827cb6" string(32) "000000005af0bc640000000038827cb6" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.1
string(32) "00000000113c389d000000001217b683" string(32) "00000000113c389d000000001217b683" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.6.0
string(32) "0000000023b17eb1000000005d4f0d2b" string(32) "0000000023b17eb1000000005d4f0d2b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.38
string(32) "00000000185942710000000014eee6b9" string(32) "00000000185942710000000014eee6b9" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.37
string(32) "000000001d313f37000000006efdc1a2" string(32) "000000001d313f37000000006efdc1a2" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.36
string(32) "000000003890709000000000738c5d78" string(32) "000000003890709000000000738c5d78" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.35
string(32) "0000000045b635190000000028eeed10" string(32) "0000000045b635190000000028eeed10" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.34
string(32) "00000000687b86ec000000003cf9675b" string(32) "00000000687b86ec000000003cf9675b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.33
string(32) "0000000072eadf4800000000466a180d" string(32) "0000000072eadf4800000000466a180d" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.32
string(32) "000000006be40d720000000024e8897d" string(32) "000000006be40d720000000024e8897d" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.31
string(32) "0000000009d45fd600000000266c2ba8" string(32) "0000000009d45fd600000000266c2ba8" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.30
string(32) "00000000751ff722000000001ca2b3dc" string(32) "00000000751ff722000000001ca2b3dc" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.29
string(32) "0000000048052dd30000000034d31481" string(32) "0000000048052dd30000000034d31481" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.28
string(32) "000000002431c3fc000000001fe9a918" string(32) "000000002431c3fc000000001fe9a918" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.27
string(32) "000000006e7191d10000000047f7ff62" string(32) "000000006e7191d10000000047f7ff62" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.26
string(32) "00000000264640e5000000000e3000f1" string(32) "00000000264640e5000000000e3000f1" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.25
string(32) "00000000704a7c600000000013c03896" string(32) "00000000704a7c600000000013c03896" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.24
string(32) "0000000016b9a7c0000000007fed0989" string(32) "0000000016b9a7c0000000007fed0989" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.23
string(32) "000000004c0dd948000000006e347537" string(32) "000000004c0dd948000000006e347537" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.22
string(32) "00000000268b37fc000000000b8479c9" string(32) "00000000268b37fc000000000b8479c9" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.21
string(32) "0000000039831ef100000000244cf930" string(32) "0000000039831ef100000000244cf930" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.20
string(32) "000000004f164f4f000000005809a700" string(32) "000000004f164f4f000000005809a700" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.19
string(32) "000000006f078aee00000000545681e2" string(32) "000000006f078aee00000000545681e2" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.18
string(32) "0000000002b51d3b000000004fe3ea0a" string(32) "0000000002b51d3b000000004fe3ea0a" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.16
string(32) "000000001c2096e5000000007ba84a5f" string(32) "000000001c2096e5000000007ba84a5f" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.15
string(32) "00000000175668db0000000013ecaa84" string(32) "00000000175668db0000000013ecaa84" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.14
string(32) "000000002de0384d00000000374e8501" string(32) "000000002de0384d00000000374e8501" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.13
string(32) "000000007f15f335000000003610f61c" string(32) "000000007f15f335000000003610f61c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.12
string(32) "000000005280e082000000006edfd04f" string(32) "000000005280e082000000006edfd04f" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.11
string(32) "000000007c95cdb9000000007f66add2" string(32) "000000007c95cdb9000000007f66add2" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.10
string(32) "0000000029592162000000005aade635" string(32) "0000000029592162000000005aade635" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.9
string(32) "0000000034d65db6000000003774f9b5" string(32) "0000000034d65db6000000003774f9b5" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.8
string(32) "0000000077fef9b400000000160ec637" string(32) "0000000077fef9b400000000160ec637" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.7
string(32) "000000005794ef7f00000000139a6b36" string(32) "000000005794ef7f00000000139a6b36" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.6
string(32) "000000002ab62fbb000000000f613ea9" string(32) "000000002ab62fbb000000000f613ea9" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.5
string(32) "000000001c677d3d0000000034db5eca" string(32) "000000001c677d3d0000000034db5eca" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.4
string(32) "000000000d46aaa90000000053e38168" string(32) "000000000d46aaa90000000053e38168" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.3
string(32) "000000002eacda240000000056f6b08b" string(32) "000000002eacda240000000056f6b08b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.2
string(32) "000000006df3eb02000000001a87b2bb" string(32) "000000006df3eb02000000001a87b2bb" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.1
string(32) "000000002703e514000000002521fe77" string(32) "000000002703e514000000002521fe77" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.5.0
string(32) "000000004d5b677f00000000741ba2ef" string(32) "000000004d5b677f00000000741ba2ef" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.45
string(32) "0000000051c05186000000007128c3b8" string(32) "0000000051c05186000000007128c3b8" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.44
string(32) "000000002f8de5da000000004dc83075" string(32) "000000002f8de5da000000004dc83075" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.43
string(32) "000000004380091a000000005e8373f2" string(32) "000000004380091a000000005e8373f2" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.42
string(32) "000000003bf56a99000000001d3515ce" string(32) "000000003bf56a99000000001d3515ce" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.41
string(32) "000000001bf58d69000000002e54013f" string(32) "000000001bf58d69000000002e54013f" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.40
string(32) "000000005a5783b20000000025d33299" string(32) "000000005a5783b20000000025d33299" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.39
string(32) "00000000199391090000000044174477" string(32) "00000000199391090000000044174477" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.38
string(32) "00000000463113c7000000003b398787" string(32) "00000000463113c7000000003b398787" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.37
string(32) "0000000041f954a4000000006ce92dfc" string(32) "0000000041f954a4000000006ce92dfc" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.36
string(32) "00000000289155020000000004857014" string(32) "00000000289155020000000004857014" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.35
string(32) "0000000038fb228900000000406e6af1" string(32) "0000000038fb228900000000406e6af1" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.34
string(32) "000000007c349ab80000000067c6f97c" string(32) "000000007c349ab80000000067c6f97c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.32
string(32) "000000002bfc487900000000399444e6" string(32) "000000002bfc487900000000399444e6" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.31
string(32) "000000004e12db2a000000003b658d29" string(32) "000000004e12db2a000000003b658d29" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.30
string(32) "000000005ba50ef1000000006e58fa3c" string(32) "000000005ba50ef1000000006e58fa3c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.29
string(32) "000000003fb3dfe800000000084427e9" string(32) "000000003fb3dfe800000000084427e9" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.28
string(32) "00000000396b031000000000505c1aed" string(32) "00000000396b031000000000505c1aed" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.27
string(32) "000000006b53c30a000000004380ba4c" string(32) "000000006b53c30a000000004380ba4c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.26
string(32) "000000000d7b01a700000000502861c2" string(32) "000000000d7b01a700000000502861c2" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.25
string(32) "0000000063f637e2000000007eaa1608" string(32) "0000000063f637e2000000007eaa1608" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.24
string(32) "000000006af1f629000000005fc0c4bb" string(32) "000000006af1f629000000005fc0c4bb" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.23
string(32) "0000000020937c1e0000000011695bbe" string(32) "0000000020937c1e0000000011695bbe" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.22
string(32) "0000000058af1d6a0000000021dff118" string(32) "0000000058af1d6a0000000021dff118" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.21
string(32) "00000000444dc5b20000000045c4e2f1" string(32) "00000000444dc5b20000000045c4e2f1" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.20
string(32) "000000007cc27348000000004d0bae82" string(32) "000000007cc27348000000004d0bae82" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.19
string(32) "000000007bab62330000000034c996fa" string(32) "000000007bab62330000000034c996fa" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.18
string(32) "00000000233dbd0e000000005af0def2" string(32) "00000000233dbd0e000000005af0def2" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.17
string(32) "00000000721d53180000000042e865c1" string(32) "00000000721d53180000000042e865c1" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.16
string(32) "00000000763970b200000000577fcb8c" string(32) "00000000763970b200000000577fcb8c" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.15
string(32) "000000000d92d4a0000000006e111806" string(32) "000000000d92d4a0000000006e111806" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.14
string(32) "000000005afd09f50000000005fa14a2" string(32) "000000005afd09f50000000005fa14a2" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.13
string(32) "000000005d2b31410000000058201542" string(32) "000000005d2b31410000000058201542" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.12
string(32) "00000000493150cf000000001b39d5d3" string(32) "00000000493150cf000000001b39d5d3" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.11
string(32) "000000003de522db000000002ab8313e" string(32) "000000003de522db000000002ab8313e" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.10
string(32) "0000000055d42bf3000000003e0f2b82" string(32) "0000000055d42bf3000000003e0f2b82" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.9
string(32) "0000000047d6477a000000007f426d52" string(32) "0000000047d6477a000000007f426d52" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.8
string(32) "0000000047cac218000000007466ab72" string(32) "0000000047cac218000000007466ab72" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.7
string(32) "000000003610b1aa000000003c49da3f" string(32) "000000003610b1aa000000003c49da3f" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.6
string(32) "00000000000214e300000000738b701b" string(32) "00000000000214e300000000738b701b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.5
string(32) "0000000047c64dfc0000000025063186" string(32) "0000000047c64dfc0000000025063186" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.4
string(32) "0000000006afcc62000000000908012b" string(32) "0000000006afcc62000000000908012b" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.3
string(32) "00000000316280b800000000687c2efa" string(32) "00000000316280b800000000687c2efa" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.2
string(32) "0000000023ee7b48000000000c945e98" string(32) "0000000023ee7b48000000000c945e98" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.1
string(32) "000000005233c512000000006cd8aeba" string(32) "000000005233c512000000006cd8aeba" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.4.0
string(32) "000000003836d6bd000000002e00f2d8" string(32) "000000003836d6bd000000002e00f2d8" Warning: Closure::bind() expects parameter 1 to be Closure, object given in /in/bRJoT on line 42 Fatal error: Function name must be a string in /in/bRJoT on line 44
Process exited with code 255.
Output for 5.3.29
string(32) "000000007d89bb4b0000000007981611" string(32) "000000007d89bb4b0000000007981611" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.28
string(32) "000000003973875e000000003beb1db8" string(32) "000000003973875e000000003beb1db8" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.27
string(32) "000000000077291900000000194aadc3" string(32) "000000000077291900000000194aadc3" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.26
string(32) "00000000549bc0180000000030e6977f" string(32) "00000000549bc0180000000030e6977f" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.25
string(32) "000000001589f7a4000000006905c4e9" string(32) "000000001589f7a4000000006905c4e9" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.24
string(32) "0000000029dd9da6000000007ab97584" string(32) "0000000029dd9da6000000007ab97584" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.23
string(32) "000000001a5a116000000000160814c0" string(32) "000000001a5a116000000000160814c0" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.22
string(32) "000000000f66ce9a0000000021720f43" string(32) "000000000f66ce9a0000000021720f43" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.21
string(32) "000000006ec5cad200000000153e406a" string(32) "000000006ec5cad200000000153e406a" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.20
string(32) "00000000272f608d0000000038a3d4c8" string(32) "00000000272f608d0000000038a3d4c8" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.19
string(32) "000000007c56e537000000003ab22f5d" string(32) "000000007c56e537000000003ab22f5d" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.18
string(32) "0000000035e3bb39000000004bf6688e" string(32) "0000000035e3bb39000000004bf6688e" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.17
string(32) "000000003d403f00000000000528b83f" string(32) "000000003d403f00000000000528b83f" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.16
string(32) "00000000533c2fea0000000034fe3534" string(32) "00000000533c2fea0000000034fe3534" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.15
string(32) "000000007d13c500000000002009a92b" string(32) "000000007d13c500000000002009a92b" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.14
string(32) "000000006fd624330000000046c8c398" string(32) "000000006fd624330000000046c8c398" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.13
string(32) "00000000111ee10d00000000255410a5" string(32) "00000000111ee10d00000000255410a5" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.12
string(32) "000000007d266303000000004edca37d" string(32) "000000007d266303000000004edca37d" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.11
string(32) "0000000005edfc3d000000006c5fd9db" string(32) "0000000005edfc3d000000006c5fd9db" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.10
string(32) "000000002bdfae3600000000431b83f8" string(32) "000000002bdfae3600000000431b83f8" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.9
string(32) "00000000193d8c2f0000000029f97fd0" string(32) "00000000193d8c2f0000000029f97fd0" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.8
string(32) "000000000717deb0000000001ef262f4" string(32) "000000000717deb0000000001ef262f4" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.7
string(32) "000000001aad6e9200000000550d06df" string(32) "000000001aad6e9200000000550d06df" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.6
string(32) "00000000562ac256000000004d934e9f" string(32) "00000000562ac256000000004d934e9f" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.5
string(32) "000000005a42ed670000000071ab9f38" string(32) "000000005a42ed670000000071ab9f38" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.4
string(32) "0000000010145a8d000000000a616201" string(32) "0000000010145a8d000000000a616201" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.3
string(32) "0000000054924923000000006b716b0f" string(32) "0000000054924923000000006b716b0f" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.2
string(32) "000000002229a31f0000000017addabd" string(32) "000000002229a31f0000000017addabd" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.1
string(32) "000000007565eac70000000004e101e6" string(32) "000000007565eac70000000004e101e6" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.3.0
string(32) "0000000075e58ab700000000290723d9" string(32) "0000000075e58ab700000000290723d9" Fatal error: Call to undefined method Closure::bind() in /in/bRJoT on line 42
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_STATIC, expecting T_STRING or T_VARIABLE or '$' in /in/bRJoT on line 16
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_STATIC, expecting T_STRING or T_VARIABLE or '$' in /in/bRJoT on line 16
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/bRJoT on line 6
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 T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/bRJoT on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/bRJoT on line 6
Process exited with code 255.

preferences:
281.19 ms | 401 KiB | 353 Q