3v4l.org

run code in 300+ PHP versions simultaneously
<?php class ExecutionFailureBuilder { public function build(\Throwable $execption): ExecutionFailureInterface { } public static function flattenExceptionBacktrace(\Throwable $throwable) { $flatten = function(&$value, $key) { if ($value instanceof \Closure) { $closureReflection = new \ReflectionFunction($value); $value = sprintf( '(Closure at %s:%s)', $closureReflection->getFileName(), $closureReflection->getStartLine() ); } elseif (is_object($value)) { $value = sprintf('object(%s)', get_class($value)); } elseif (is_resource($value)) { $value = sprintf('resource(%s)', get_resource_type($value)); } }; do { $trace = $throwable->getTrace(); foreach ($trace as &$call) { array_walk_recursive($call['args'], $flatten); } var_dump($trace); } while($throwable = $throwable->getPrevious()); } } $a = function($b, string $c) { try { throw new Exception(); } catch (Exception $e) { ExecutionFailureBuilder::flattenExceptionBacktrace($e); } }; $b = new class(4, 'rfvtgb') { public function __construct($b, string $c) { try { throw new Exception(); } catch (Exception $e) { ExecutionFailureBuilder::flattenExceptionBacktrace($e); } } }; class Testing { public static function test($b, string $c) { try { throw new Exception(); } catch (Exception $e) { ExecutionFailureBuilder::flattenExceptionBacktrace($e); } } }; $a(3, 'RTYuio', new \stdClass, []); Testing::test(5, 'rfv');
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(30) "class@anonymous/in/6a5H4:46$0" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(30) "class@anonymous/in/6a5H4:46$0" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.4.4 - 7.4.33, 8.0.0 - 8.0.30
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(30) "class@anonymous/in/6a5H4:46$2" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.4.0
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f580a87a5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.33
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fde30e035fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.32
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7ff2a60715fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.31
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fba9b7975fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.30
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fcc3db6e5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.29
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f14fac705fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.28
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f1346f8d5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.27
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f91063d95fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.26
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fe92b93e5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.25
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fc5845475fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.24
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fd19fadf5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.23
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f665e2bb5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.21
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f1f44f495fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.20
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f388e2de5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.19
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f2eda0aa5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.18
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f18a7b935fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.17
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fe9dcd765fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.3.16
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7faeec6a05fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.33
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f293f67e5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.32
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f57cd77e5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.31
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fbee94995fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.30
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f91673145fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.29
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f3e3410d5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.11
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f28c40fc5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.6
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f777cbfd5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.2
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f72110085fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.1
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fc655da75fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.2.0
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fb71d3d35fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.20
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f572fd705fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.14
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fc2c37205fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.13
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f11baede5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.12
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7fbf433485fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.11
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f1f29fa85fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.10
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f94c12365fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.9
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f6e890005fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.8
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f77f5e1c5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.7
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f08a496a5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.6
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f63fdcab5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.5
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f066b1135fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.4
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f485ce2b5fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.3
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f2c454f75fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.2
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f19fd4b55fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.1
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f0e343955fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }
Output for 7.1.0
array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(46) ["function"]=> string(11) "__construct" ["class"]=> string(39) "class@anonymous/in/6a5H40x7f4fe67d85fc" ["type"]=> string(2) "->" ["args"]=> array(2) { [0]=> int(4) [1]=> string(6) "rfvtgb" } } } array(1) { [0]=> &array(4) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(69) ["function"]=> string(9) "{closure}" ["args"]=> array(4) { [0]=> int(3) [1]=> string(6) "RTYuio" [2]=> string(16) "object(stdClass)" [3]=> array(0) { } } } } array(1) { [0]=> &array(6) { ["file"]=> string(9) "/in/6a5H4" ["line"]=> int(70) ["function"]=> string(4) "test" ["class"]=> string(7) "Testing" ["type"]=> string(2) "::" ["args"]=> array(2) { [0]=> int(5) [1]=> string(3) "rfv" } } }

preferences:
209.58 ms | 403 KiB | 160 Q