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 $this->instance; }; $cloner = $closure->bindTo($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" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.30
string(32) "00000000616b3cb40000000027bb770b" string(32) "00000000616b3cb40000000027bb770b" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.1, 8.0.29
string(32) "000000006ed9c245000000006ecfd48a" string(32) "000000006ed9c245000000006ecfd48a" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.28
string(32) "000000001a7836fe00000000747cf17e" string(32) "000000001a7836fe00000000747cf17e" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.27
string(32) "000000007ac0fe480000000032c08527" string(32) "000000007ac0fe480000000032c08527" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.26
string(32) "00000000248b0b000000000036968bd6" string(32) "00000000248b0b000000000036968bd6" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.25
string(32) "000000002d5a0161000000003cd95b29" string(32) "000000002d5a0161000000003cd95b29" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.24
string(32) "000000002ff485c1000000003f77ade2" string(32) "000000002ff485c1000000003f77ade2" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.23
string(32) "0000000050eb1cd8000000005674c12d" string(32) "0000000050eb1cd8000000005674c12d" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.22
string(32) "00000000256ec3a40000000019ec83ba" string(32) "00000000256ec3a40000000019ec83ba" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.21
string(32) "000000006473f9b00000000016a8eaf3" string(32) "000000006473f9b00000000016a8eaf3" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.20
string(32) "000000007c5f2878000000005b737268" string(32) "000000007c5f2878000000005b737268" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.19
string(32) "00000000379e6e54000000007da41584" string(32) "00000000379e6e54000000007da41584" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.18
string(32) "000000000c5da7d3000000000b8a38f7" string(32) "000000000c5da7d3000000000b8a38f7" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.17
string(32) "0000000000a930d20000000074eda1e5" string(32) "0000000000a930d20000000074eda1e5" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.9, 8.0.16
string(32) "000000005a0aec5f000000007a30d4b7" string(32) "000000005a0aec5f000000007a30d4b7" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.14 - 8.0.15
string(32) "0000000006e84ab2000000000ef2b060" string(32) "0000000006e84ab2000000000ef2b060" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.13
string(32) "000000003b865ccd00000000650058e0" string(32) "000000003b865ccd00000000650058e0" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.12
string(32) "0000000002b2faeb0000000031021630" string(32) "0000000002b2faeb0000000031021630" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.11
string(32) "0000000014fc49a2000000003aa63457" string(32) "0000000014fc49a2000000003aa63457" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.10
string(32) "000000002ebb9d6400000000151fd0c5" string(32) "000000002ebb9d6400000000151fd0c5" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.8
string(32) "000000001e44e220000000007f884066" string(32) "000000001e44e220000000007f884066" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.7
string(32) "0000000061847bc0000000001693acee" string(32) "0000000061847bc0000000001693acee" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.6
string(32) "0000000030fbf47f000000007f35a8ad" string(32) "0000000030fbf47f000000007f35a8ad" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.5
string(32) "00000000118a5e190000000046fb306f" string(32) "00000000118a5e190000000046fb306f" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.3
string(32) "00000000739a87f8000000001477b72e" string(32) "00000000739a87f8000000001477b72e" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.2
string(32) "00000000625ac679000000001abf350c" string(32) "00000000625ac679000000001abf350c" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 8.0.0
string(32) "00000000101a66db0000000055d7fa7d" string(32) "00000000101a66db0000000055d7fa7d" Warning: Class "private" not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Value of type null is not callable in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.33
string(32) "0000000063b77a1b0000000002993f8f" string(32) "0000000063b77a1b0000000002993f8f" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.32
string(32) "000000001c82e8b80000000059799f7d" string(32) "000000001c82e8b80000000059799f7d" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.30
string(32) "00000000493cbaa70000000042fb6149" string(32) "00000000493cbaa70000000042fb6149" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.29
string(32) "0000000042f37e8f0000000010f9905b" string(32) "0000000042f37e8f0000000010f9905b" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.28
string(32) "00000000680c6d3300000000632c0905" string(32) "00000000680c6d3300000000632c0905" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.27
string(32) "0000000035a25c85000000007c624b67" string(32) "0000000035a25c85000000007c624b67" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.26
string(32) "000000002223097c0000000005b2e134" string(32) "000000002223097c0000000005b2e134" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.25
string(32) "0000000073f0e3890000000075d02dd7" string(32) "0000000073f0e3890000000075d02dd7" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.24
string(32) "0000000004efb88400000000397f85e8" string(32) "0000000004efb88400000000397f85e8" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.23
string(32) "0000000030def5020000000024c48d40" string(32) "0000000030def5020000000024c48d40" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.22
string(32) "0000000078e7fc81000000001c1e443c" string(32) "0000000078e7fc81000000001c1e443c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.21
string(32) "000000003466be9d000000001d02ac05" string(32) "000000003466be9d000000001d02ac05" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.20
string(32) "000000006e3a3c49000000002aeafb10" string(32) "000000006e3a3c49000000002aeafb10" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.16
string(32) "00000000047648ba000000002f7dd706" string(32) "00000000047648ba000000002f7dd706" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.15
string(32) "00000000600d1565000000007f9f9f26" string(32) "00000000600d1565000000007f9f9f26" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.14
string(32) "00000000274953800000000001ab7d31" string(32) "00000000274953800000000001ab7d31" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.13
string(32) "000000002ef62d18000000006c398fa4" string(32) "000000002ef62d18000000006c398fa4" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.12
string(32) "000000006a0f62f40000000003bd90bc" string(32) "000000006a0f62f40000000003bd90bc" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.11
string(32) "000000001c0eadbe000000003c812168" string(32) "000000001c0eadbe000000003c812168" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.10
string(32) "0000000002833b060000000060f02656" string(32) "0000000002833b060000000060f02656" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.9
string(32) "000000007c0579260000000075186782" string(32) "000000007c0579260000000075186782" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.8
string(32) "000000002dbb20ab000000007aea9863" string(32) "000000002dbb20ab000000007aea9863" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.7
string(32) "0000000024e81ee700000000288b8e5e" string(32) "0000000024e81ee700000000288b8e5e" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.6
string(32) "00000000622c2d58000000001908737f" string(32) "00000000622c2d58000000001908737f" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.5
string(32) "00000000118ba60d00000000414635b3" string(32) "00000000118ba60d00000000414635b3" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.4
string(32) "00000000608987530000000075241d2d" string(32) "00000000608987530000000075241d2d" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.3
string(32) "0000000068d7d948000000004913d56f" string(32) "0000000068d7d948000000004913d56f" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.4.0
string(32) "0000000004794c580000000050565f9d" string(32) "0000000004794c580000000050565f9d" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.33
string(32) "000000003d8162e7000000006677bd3a" string(32) "000000003d8162e7000000006677bd3a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.32
string(32) "0000000069d57df50000000043720050" string(32) "0000000069d57df50000000043720050" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.31
string(32) "0000000000a930d20000000074eda1e5" string(32) "0000000000a930d20000000074eda1e5" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.30
string(32) "000000000c101d6b000000000ce12246" string(32) "000000000c101d6b000000000ce12246" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.29
string(32) "000000001350fac00000000015c4bde8" string(32) "000000001350fac00000000015c4bde8" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.28
string(32) "00000000438d7ffc000000001085e2ea" string(32) "00000000438d7ffc000000001085e2ea" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.27
string(32) "000000006f6e917e0000000036c5ed2e" string(32) "000000006f6e917e0000000036c5ed2e" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.26
string(32) "000000000f58ffd400000000572561bd" string(32) "000000000f58ffd400000000572561bd" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.25
string(32) "0000000030d169d4000000003585dec0" string(32) "0000000030d169d4000000003585dec0" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.24
string(32) "000000003c2d5f52000000003cac0643" string(32) "000000003c2d5f52000000003cac0643" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.23
string(32) "000000007d2955f40000000069d210a2" string(32) "000000007d2955f40000000069d210a2" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.21
string(32) "0000000003888f32000000004fe78ec6" string(32) "0000000003888f32000000004fe78ec6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.20
string(32) "000000007e426b85000000001d8b1f02" string(32) "000000007e426b85000000001d8b1f02" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.19
string(32) "000000005d4ae1dd00000000293e0a58" string(32) "000000005d4ae1dd00000000293e0a58" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.18
string(32) "00000000470fef41000000007d40b1e5" string(32) "00000000470fef41000000007d40b1e5" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.17
string(32) "00000000530b62b1000000002fdfdbc9" string(32) "00000000530b62b1000000002fdfdbc9" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.16
string(32) "000000000d2839b40000000061233c87" string(32) "000000000d2839b40000000061233c87" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.12
string(32) "0000000020ce931e0000000066bc6855" string(32) "0000000020ce931e0000000066bc6855" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.11
string(32) "000000003e34f4210000000028381f82" string(32) "000000003e34f4210000000028381f82" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.10
string(32) "000000004428efa7000000004e11a077" string(32) "000000004428efa7000000004e11a077" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.9
string(32) "000000005416590d000000000893c060" string(32) "000000005416590d000000000893c060" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.8
string(32) "0000000005326d77000000005ceb372c" string(32) "0000000005326d77000000005ceb372c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.7
string(32) "00000000074a1dc60000000047e03980" string(32) "00000000074a1dc60000000047e03980" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.6
string(32) "000000007ead13160000000014e6d2d8" string(32) "000000007ead13160000000014e6d2d8" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.5
string(32) "000000007785361900000000301aa52c" string(32) "000000007785361900000000301aa52c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.4
string(32) "000000001620578700000000730a41d6" string(32) "000000001620578700000000730a41d6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.3
string(32) "000000002a69da290000000045e26da9" string(32) "000000002a69da290000000045e26da9" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.2
string(32) "00000000245b65b0000000001be62835" string(32) "00000000245b65b0000000001be62835" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.1
string(32) "0000000000a143f20000000002183f9f" string(32) "0000000000a143f20000000002183f9f" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.3.0
string(32) "00000000796649520000000015a0c2cc" string(32) "00000000796649520000000015a0c2cc" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.33
string(32) "000000004a106bb80000000046327fd7" string(32) "000000004a106bb80000000046327fd7" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.32
string(32) "0000000011d68323000000003a341e02" string(32) "0000000011d68323000000003a341e02" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.31
string(32) "000000005f7892f200000000215aedcb" string(32) "000000005f7892f200000000215aedcb" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.30
string(32) "000000004239bc62000000005329e1ec" string(32) "000000004239bc62000000005329e1ec" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.29
string(32) "000000006d73d87b000000003d97cdbb" string(32) "000000006d73d87b000000003d97cdbb" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.25
string(32) "000000002dc5a287000000003b882aa1" string(32) "000000002dc5a287000000003b882aa1" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.24
string(32) "000000005a6a710e000000006ecdbb4a" string(32) "000000005a6a710e000000006ecdbb4a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.23
string(32) "0000000014e4c53100000000546a54c6" string(32) "0000000014e4c53100000000546a54c6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.22
string(32) "0000000048017849000000004b0be07c" string(32) "0000000048017849000000004b0be07c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.21
string(32) "000000002c2368fe000000002250fe4b" string(32) "000000002c2368fe000000002250fe4b" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.20
string(32) "0000000030d7a5440000000005a455e3" string(32) "0000000030d7a5440000000005a455e3" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.19
string(32) "000000004491d8a5000000001ce1c838" string(32) "000000004491d8a5000000001ce1c838" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.18
string(32) "0000000072a2e36b00000000337821c9" string(32) "0000000072a2e36b00000000337821c9" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.17
string(32) "0000000046a14ff8000000005ee8b6a5" string(32) "0000000046a14ff8000000005ee8b6a5" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.6
string(32) "000000003d8f73ab0000000009281aaa" string(32) "000000003d8f73ab0000000009281aaa" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.2.0
string(32) "000000000d7d114f000000000b301342" string(32) "000000000d7d114f000000000b301342" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.33
string(32) "000000002cb18ba300000000667fbc60" string(32) "000000002cb18ba300000000667fbc60" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.32
string(32) "0000000058a1d6e4000000000e76289d" string(32) "0000000058a1d6e4000000000e76289d" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.31
string(32) "0000000017650de5000000002f8b1258" string(32) "0000000017650de5000000002f8b1258" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.30
string(32) "00000000681a89ab0000000026587fd8" string(32) "00000000681a89ab0000000026587fd8" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.29
string(32) "000000007efa540a0000000057ab71c9" string(32) "000000007efa540a0000000057ab71c9" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.28
string(32) "0000000049c9dd2000000000369c515a" string(32) "0000000049c9dd2000000000369c515a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.27
string(32) "000000001cf25d2d0000000031697eaf" string(32) "000000001cf25d2d0000000031697eaf" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.26
string(32) "000000004d0ee2be0000000039b75c5b" string(32) "000000004d0ee2be0000000039b75c5b" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.20
string(32) "0000000000111c7c000000004578597d" string(32) "0000000000111c7c000000004578597d" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.7
string(32) "0000000049856ec60000000052411425" string(32) "0000000049856ec60000000052411425" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.6
string(32) "000000006c7a956d000000004ec71f4a" string(32) "000000006c7a956d000000004ec71f4a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.5
string(32) "000000003d867bae0000000050f356f6" string(32) "000000003d867bae0000000050f356f6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.1.0
string(32) "000000006f7fd218000000003ebe6683" string(32) "000000006f7fd218000000003ebe6683" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.20
string(32) "0000000001fb26070000000025416d89" string(32) "0000000001fb26070000000025416d89" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.14
string(32) "000000002a6aef8e0000000077d5245d" string(32) "000000002a6aef8e0000000077d5245d" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.6
string(32) "0000000014ff8cce0000000058a698ae" string(32) "0000000014ff8cce0000000058a698ae" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.5
string(32) "000000005976896e00000000230843fd" string(32) "000000005976896e00000000230843fd" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.4
string(32) "000000007683702e0000000043f33065" string(32) "000000007683702e0000000043f33065" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.3
string(32) "000000006e2133e10000000029324fe0" string(32) "000000006e2133e10000000029324fe0" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.2
string(32) "000000002659d1010000000072c98b19" string(32) "000000002659d1010000000072c98b19" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.1
string(32) "000000003b3ca6490000000004952f3a" string(32) "000000003b3ca6490000000004952f3a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 7.0.0
string(32) "0000000003e538f30000000058e19dca" string(32) "0000000003e538f30000000058e19dca" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Uncaught Error: Function name must be a string in /in/pDoq0:44 Stack trace: #0 {main} thrown in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.28
string(32) "0000000066b8275200000000291c3442" string(32) "0000000066b8275200000000291c3442" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.21
string(32) "00000000009534ca000000005420783a" string(32) "00000000009534ca000000005420783a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.20
string(32) "000000005f1ce62a000000002d1e90ed" string(32) "000000005f1ce62a000000002d1e90ed" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.19
string(32) "0000000009595cc7000000006bfbd031" string(32) "0000000009595cc7000000006bfbd031" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.18
string(32) "0000000032e474b4000000001f1558d9" string(32) "0000000032e474b4000000001f1558d9" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.17
string(32) "00000000558c48e30000000014dd8e00" string(32) "00000000558c48e30000000014dd8e00" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.16
string(32) "0000000033163c7d00000000143e3a74" string(32) "0000000033163c7d00000000143e3a74" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.15
string(32) "00000000295965e500000000316b8162" string(32) "00000000295965e500000000316b8162" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.14
string(32) "0000000002cac8580000000021ef87fb" string(32) "0000000002cac8580000000021ef87fb" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.13
string(32) "000000002cf64a960000000046fc7282" string(32) "000000002cf64a960000000046fc7282" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.12
string(32) "000000002bd140630000000055e79d7c" string(32) "000000002bd140630000000055e79d7c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.11
string(32) "00000000186584d400000000536fe495" string(32) "00000000186584d400000000536fe495" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.10
string(32) "000000001811014200000000511dfdcc" string(32) "000000001811014200000000511dfdcc" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.9
string(32) "0000000009e62ac1000000003e604df8" string(32) "0000000009e62ac1000000003e604df8" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.8
string(32) "00000000244cb549000000001551f609" string(32) "00000000244cb549000000001551f609" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.6.7
string(32) "000000003903b54b000000004865fbef" string(32) "000000003903b54b000000004865fbef" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.35
string(32) "000000000eadab8c000000004272be4f" string(32) "000000000eadab8c000000004272be4f" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.34
string(32) "000000007c1acc630000000039fcb6c3" string(32) "000000007c1acc630000000039fcb6c3" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.33
string(32) "00000000306fb4340000000002eb2d18" string(32) "00000000306fb4340000000002eb2d18" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.32
string(32) "000000006834113300000000500b8158" string(32) "000000006834113300000000500b8158" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.31
string(32) "00000000440f4da4000000007037e7b0" string(32) "00000000440f4da4000000007037e7b0" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.30
string(32) "0000000038c068f20000000057cd7869" string(32) "0000000038c068f20000000057cd7869" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.29
string(32) "00000000236bb5a1000000001ae82ae5" string(32) "00000000236bb5a1000000001ae82ae5" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.28
string(32) "0000000079f0a6ce000000004bebb3ef" string(32) "0000000079f0a6ce000000004bebb3ef" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.27
string(32) "000000001d979a9b000000003b9f15b0" string(32) "000000001d979a9b000000003b9f15b0" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.26
string(32) "000000006d1c8dd6000000005e017fdc" string(32) "000000006d1c8dd6000000005e017fdc" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.25
string(32) "000000006f2cb53b000000004845d343" string(32) "000000006f2cb53b000000004845d343" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.5.24
string(32) "000000004e143e71000000004b8462be" string(32) "000000004e143e71000000004b8462be" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.45
string(32) "00000000772e0958000000003874d49c" string(32) "00000000772e0958000000003874d49c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.44
string(32) "00000000375e26060000000077713920" string(32) "00000000375e26060000000077713920" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.43
string(32) "000000000a65d4cd000000006aefa4a0" string(32) "000000000a65d4cd000000006aefa4a0" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.42
string(32) "0000000075b2e26e000000002b40763a" string(32) "0000000075b2e26e000000002b40763a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.41
string(32) "000000007046be5a000000004303c5d6" string(32) "000000007046be5a000000004303c5d6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.40
string(32) "0000000019eb52de000000003b3ff2e5" string(32) "0000000019eb52de000000003b3ff2e5" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.39
string(32) "0000000018aebe7e000000003747b1b1" string(32) "0000000018aebe7e000000003747b1b1" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.38
string(32) "0000000062984b040000000061188f93" string(32) "0000000062984b040000000061188f93" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.37
string(32) "000000005d94ea550000000061a91922" string(32) "000000005d94ea550000000061a91922" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.36
string(32) "000000003c0097230000000074086479" string(32) "000000003c0097230000000074086479" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.35
string(32) "000000000f2d1a820000000021819d8a" string(32) "000000000f2d1a820000000021819d8a" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.34
string(32) "00000000032a999900000000766c4a1e" string(32) "00000000032a999900000000766c4a1e" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.32
string(32) "000000004fc0e0500000000006f53911" string(32) "000000004fc0e0500000000006f53911" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.31
string(32) "000000002fdf72bd000000004edd3564" string(32) "000000002fdf72bd000000004edd3564" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.30
string(32) "000000005edcdcf90000000054caf8c8" string(32) "000000005edcdcf90000000054caf8c8" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.29
string(32) "000000003f54189b0000000065d494bc" string(32) "000000003f54189b0000000065d494bc" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.28
string(32) "0000000028ea021c0000000069b43148" string(32) "0000000028ea021c0000000069b43148" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.27
string(32) "00000000462462f1000000007ae36e6b" string(32) "00000000462462f1000000007ae36e6b" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.26
string(32) "000000007fcdd7f1000000004242823d" string(32) "000000007fcdd7f1000000004242823d" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.25
string(32) "000000002d3725a6000000006cf58f4c" string(32) "000000002d3725a6000000006cf58f4c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.24
string(32) "000000006e8294d90000000058539121" string(32) "000000006e8294d90000000058539121" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.23
string(32) "000000001b57df45000000006bd828da" string(32) "000000001b57df45000000006bd828da" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.22
string(32) "000000004629737600000000463b9d42" string(32) "000000004629737600000000463b9d42" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.21
string(32) "000000003c043c73000000001121a7ae" string(32) "000000003c043c73000000001121a7ae" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.20
string(32) "000000000641a35d0000000027796124" string(32) "000000000641a35d0000000027796124" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.19
string(32) "000000006374d777000000007e9a1e29" string(32) "000000006374d777000000007e9a1e29" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.18
string(32) "0000000078d32a5c000000007452fd5b" string(32) "0000000078d32a5c000000007452fd5b" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.17
string(32) "0000000058625b390000000044555976" string(32) "0000000058625b390000000044555976" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.16
string(32) "0000000076f998160000000012ca2aa4" string(32) "0000000076f998160000000012ca2aa4" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.15
string(32) "00000000641a7e26000000004daad4cb" string(32) "00000000641a7e26000000004daad4cb" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.14
string(32) "0000000053b49e6e0000000062a85cb2" string(32) "0000000053b49e6e0000000062a85cb2" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.13
string(32) "000000004acefb62000000001179c36c" string(32) "000000004acefb62000000001179c36c" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.12
string(32) "000000006e9ead6800000000408fbdc7" string(32) "000000006e9ead6800000000408fbdc7" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.11
string(32) "000000006a03fd2000000000491db8d6" string(32) "000000006a03fd2000000000491db8d6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.10
string(32) "0000000002cbebec000000001f86fdcf" string(32) "0000000002cbebec000000001f86fdcf" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.9
string(32) "0000000029c8b2c7000000002603ebdb" string(32) "0000000029c8b2c7000000002603ebdb" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.8
string(32) "000000003a0403d3000000006c2dc5f6" string(32) "000000003a0403d3000000006c2dc5f6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.7
string(32) "0000000012f7960d000000003880c295" string(32) "0000000012f7960d000000003880c295" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.6
string(32) "00000000404bc3c1000000003a8350c6" string(32) "00000000404bc3c1000000003a8350c6" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.5
string(32) "0000000043d09b100000000021086c9f" string(32) "0000000043d09b100000000021086c9f" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.4
string(32) "0000000072940ae00000000000f1eca5" string(32) "0000000072940ae00000000000f1eca5" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.3
string(32) "00000000125f2c920000000019df1858" string(32) "00000000125f2c920000000019df1858" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.2
string(32) "000000001a02719300000000526303e3" string(32) "000000001a02719300000000526303e3" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.1
string(32) "000000003b90b7e100000000388e00c0" string(32) "000000003b90b7e100000000388e00c0" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.4.0
string(32) "00000000016e0fc20000000007ce3a74" string(32) "00000000016e0fc20000000007ce3a74" Warning: Class 'private' not found in /in/pDoq0 on line 42 Fatal error: Function name must be a string in /in/pDoq0 on line 44
Process exited with code 255.
Output for 5.3.29
string(32) "00000000479f3cb00000000079b38f59" string(32) "00000000479f3cb00000000079b38f59" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.28
string(32) "00000000436245230000000054410ff8" string(32) "00000000436245230000000054410ff8" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.27
string(32) "000000003473b89b000000004ecce484" string(32) "000000003473b89b000000004ecce484" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.26
string(32) "0000000028e7b7ca00000000037db8fb" string(32) "0000000028e7b7ca00000000037db8fb" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.25
string(32) "00000000368d40150000000026de84cc" string(32) "00000000368d40150000000026de84cc" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.24
string(32) "000000000304195c00000000145c6ee7" string(32) "000000000304195c00000000145c6ee7" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.23
string(32) "0000000073b407e6000000007913b60b" string(32) "0000000073b407e6000000007913b60b" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.22
string(32) "0000000053a39276000000001e20c7b8" string(32) "0000000053a39276000000001e20c7b8" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.21
string(32) "000000004d8749ce000000002edf17a9" string(32) "000000004d8749ce000000002edf17a9" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.20
string(32) "000000003f5a3ec2000000002a0f7cc7" string(32) "000000003f5a3ec2000000002a0f7cc7" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.19
string(32) "00000000254664df00000000086c97de" string(32) "00000000254664df00000000086c97de" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.18
string(32) "0000000019592f3a000000005fe6b9be" string(32) "0000000019592f3a000000005fe6b9be" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.17
string(32) "0000000029e1d4c600000000239ee85e" string(32) "0000000029e1d4c600000000239ee85e" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.16
string(32) "000000004a90c1f4000000001c04ce96" string(32) "000000004a90c1f4000000001c04ce96" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.15
string(32) "00000000375db94f000000007db36657" string(32) "00000000375db94f000000007db36657" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.14
string(32) "000000003bd04bfc0000000029e239c8" string(32) "000000003bd04bfc0000000029e239c8" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.13
string(32) "0000000069456fe200000000698c4fea" string(32) "0000000069456fe200000000698c4fea" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.12
string(32) "000000003f591667000000000f1d5ae7" string(32) "000000003f591667000000000f1d5ae7" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.11
string(32) "0000000020af8f64000000004559ece2" string(32) "0000000020af8f64000000004559ece2" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.10
string(32) "00000000426d2317000000001e327378" string(32) "00000000426d2317000000001e327378" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.9
string(32) "000000003345a517000000001a1c864b" string(32) "000000003345a517000000001a1c864b" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.8
string(32) "00000000036f8f910000000030b17737" string(32) "00000000036f8f910000000030b17737" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.7
string(32) "0000000060a7beac00000000381d03e2" string(32) "0000000060a7beac00000000381d03e2" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.6
string(32) "00000000481292ce00000000122e4ed6" string(32) "00000000481292ce00000000122e4ed6" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.5
string(32) "000000005be28df2000000006933d743" string(32) "000000005be28df2000000006933d743" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.4
string(32) "000000005744d53b0000000073cbf420" string(32) "000000005744d53b0000000073cbf420" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.3
string(32) "000000003f9f1e54000000000e4f4447" string(32) "000000003f9f1e54000000000e4f4447" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.2
string(32) "0000000043d08188000000004a254bdb" string(32) "0000000043d08188000000004a254bdb" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.1
string(32) "0000000001f068b2000000000c5afafc" string(32) "0000000001f068b2000000000c5afafc" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 on line 42
Process exited with code 255.
Output for 5.3.0
string(32) "000000002a5f048e000000007672a1b0" string(32) "000000002a5f048e000000007672a1b0" Fatal error: Call to undefined method Closure::bindTo() in /in/pDoq0 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/pDoq0 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/pDoq0 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/pDoq0 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/pDoq0 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/pDoq0 on line 6
Process exited with code 255.

preferences:
289.58 ms | 401 KiB | 342 Q