3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Benchmark: Reflection Performance * * Conclusion: there is no performance-gain from caching reflection-objects. */ define('NUM_TESTS', 10); header('Content-type: text/plain'); $func = function($a, $b, $c) { // ... }; class Foo { public $a; protected $b; private $c; public function foo($a,$b,$c) {} protected function bar($a,$b,$c) {} private function baz($a,$b,$c) {} } for ($i=0; $i<NUM_TESTS; $i++) { $start = microtime(true); $ref = new ReflectionClass($func); $end = microtime(true); echo "ReflectionClass # $i: " . number_format(1000000*($end-$start), 3) . " µsec\n"; } for ($i=0; $i<NUM_TESTS; $i++) { $start = microtime(true); $ref = new ReflectionFunction($func); $end = microtime(true); echo "ReflectionFunction # $i: " . number_format(1000000*($end-$start), 3) . " µsec\n"; } class Cache { private $cache = array(); public function getReflection($class) { if (!isset($this->cache[$class])) { $this->cache[$class] = new ReflectionClass($class); } return $this->cache[$class]; } } $cache = new Cache; for ($i=0; $i<NUM_TESTS; $i++) { $start = microtime(true); $ref = $cache->getReflection('Foo'); $end = microtime(true); echo "Cached ReflectionClass # $i: " . number_format(1000000*($end-$start), 3) . " µsec\n"; }
Output for 7.4.1
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.4.0
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.3.13
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 9.060 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.3.12
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.3.11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.3.10
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 3.815 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.3.9
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 15.974 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.3.8
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.3.7
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.192 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.3.6
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.3.5
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.3.4
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 3.815 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.3.3
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.3.2
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 1.192 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 15.974 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.3.1
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 10.967 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.3.0
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 15.974 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.26
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 22.173 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.25
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 10.014 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.24
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 12.159 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.23
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.22
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 25.988 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.2.21
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 9.060 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.20
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.19
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8.821 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.18
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 1.192 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.192 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.17
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 11.921 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.16
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.192 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 18.120 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.15
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.2.14
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.768 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 13.113 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.2.13
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 12.875 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.12
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 10.967 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.2.10
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 10.014 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.9
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 14.067 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.8
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 11.206 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.7
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 16.928 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.6
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 10.014 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.5
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 6.199 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.4
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.3
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.2.2
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.1
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.2.0
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.1.33
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.32
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 10.967 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.31
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 9.060 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.30
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 8.821 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.29
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.192 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.28
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.27
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 13.828 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 9.060 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 7.1.26
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.199 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.25
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 8.821 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.24
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.23
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.22
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.21
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.20
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 1.192 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 6.199 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.19
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.18
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.17
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 12.159 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.16
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.15
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.14
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.13
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.12
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 9.060 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.10
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.1.9
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 10.014 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.8
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.7
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.1.6
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.768 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.5
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.4
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.3
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 8.821 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.1.2
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.1
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 13.113 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.1.0
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 11.921 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.33
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 2.861 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 3.099 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.861 µsec ReflectionFunction # 5: 2.861 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 13.113 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 2.146 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.32
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 8.821 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.31
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 9.060 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.0.30
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.29
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 10.014 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.28
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.27
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.26
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 14.067 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.25
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.192 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.24
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 3.815 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.23
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 4.053 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.22
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.199 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.21
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 20.027 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8.821 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.20
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.19
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 12.159 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.18
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 6.199 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 7.0.17
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.16
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.15
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.14
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 14.067 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 9.060 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.13
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.000 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.12
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 3.099 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 10.014 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.10
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 13.828 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.9
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.8
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 20.027 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 7.868 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.7
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 12.159 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.000 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.6
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 13.113 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.5
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 4.053 µsec ReflectionClass # 1: 0.954 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 5.007 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.4
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 6.914 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.3
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 10.014 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 7.0.2
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 8.106 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.1
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 5.960 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 7.0.0
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Foo has a deprecated constructor in /in/3r021 on line 17 Warning: Cannot modify header information - headers already sent by (output started at /in/3r021:17) in /in/3r021 on line 11 ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 7.153 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.40
ReflectionClass # 0: 13.113 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 22.888 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.39
ReflectionClass # 0: 15.974 µsec ReflectionClass # 1: 6.199 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 25.034 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.38
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.37
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.000 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 19.073 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.36
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 21.935 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.35
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.34
ReflectionClass # 0: 15.974 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 30.994 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.6.33
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.32
ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 25.988 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.31
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 15.974 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.30
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.000 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 17.881 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.29
ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 35.048 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.6.28
ReflectionClass # 0: 13.113 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 63.896 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.27
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 21.935 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.26
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 19.789 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.25
ReflectionClass # 0: 16.928 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 3.815 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.24
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 19.073 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.23
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.22
ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 25.034 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.21
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 18.120 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.20
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 16.928 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.19
ReflectionClass # 0: 14.782 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.18
ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 30.994 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.6.17
ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 3.099 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 30.041 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.16
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.15
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.6.14
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 16.928 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.13
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 19.789 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.12
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 19.073 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.11
ReflectionClass # 0: 14.067 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.10
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 32.902 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.9
ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 18.835 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.8
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 45.061 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.6.7
ReflectionClass # 0: 15.974 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 22.888 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.6
ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.6.5
ReflectionClass # 0: 6.199 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.4
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 18.835 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.3
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 15.974 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.2
ReflectionClass # 0: 15.974 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.000 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.6.1
ReflectionClass # 0: 8.821 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 25.988 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.6.0
ReflectionClass # 0: 13.113 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.5.38
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 17.881 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.5.37
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 18.835 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.36
ReflectionClass # 0: 15.974 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 40.054 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 2.146 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.5.35
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 31.948 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.5.34
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 29.087 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.5.33
ReflectionClass # 0: 8.821 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 33.140 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.32
ReflectionClass # 0: 16.928 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.768 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 32.187 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.5.31
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 16.928 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.30
ReflectionClass # 0: 16.928 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.861 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 31.948 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.5.29
ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 29.087 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.28
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 21.935 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.27
ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 28.133 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.26
ReflectionClass # 0: 15.020 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 5.960 µsec ReflectionClass # 5: 4.053 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 2.861 µsec ReflectionClass # 9: 4.053 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 4.053 µsec ReflectionFunction # 3: 4.053 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 41.008 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.5.25
ReflectionClass # 0: 21.935 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.5.24
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 16.928 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.5.23
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.22
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 27.895 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.21
ReflectionClass # 0: 14.067 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 30.041 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.20
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 22.888 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.19
ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 15.974 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.18
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 19.789 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.17
ReflectionClass # 0: 16.928 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 37.193 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.5.16
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 19.073 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.5.15
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 3.815 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 28.849 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.5.14
ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 25.034 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.5.13
ReflectionClass # 0: 10.967 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.12
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 37.193 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.11
ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 24.796 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.10
ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 3.815 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 29.087 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.9
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 24.080 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.8
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 2.861 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 31.948 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.7
ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 18.835 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.6
ReflectionClass # 0: 6.199 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 28.133 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.5
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 19.073 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.4
ReflectionClass # 0: 13.113 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 9.060 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 38.147 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.5.3
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 23.127 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.192 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.2
ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 30.041 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.1
ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 29.087 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.5.0
ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.000 µsec ReflectionFunction # 0: 0.954 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 16.928 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.4.45
ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 24.080 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.44
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 21.935 µsec Cached ReflectionClass # 1: 1.192 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.4.43
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 30.041 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.42
ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 24.080 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.41
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 30.994 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.40
ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 28.133 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.39
ReflectionClass # 0: 6.199 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.4.38
ReflectionClass # 0: 11.206 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 3.099 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 3.099 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 40.054 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.4.37
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 19.073 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.36
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.815 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 3.099 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 30.041 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.35
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 31.948 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.4.34
ReflectionClass # 0: 11.921 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 3.099 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 3.099 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 4.053 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 2.861 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 40.054 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 2.146 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.4.33
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 23.127 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.32
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.4.31
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.000 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.000 µsec Cached ReflectionClass # 0: 18.120 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.30
ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 22.888 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.29
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 3.815 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 24.080 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.28
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 37.909 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.4.27
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.4.26
ReflectionClass # 0: 11.206 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.192 µsec Cached ReflectionClass # 0: 24.796 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.4.25
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 29.087 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.24
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 8.106 µsec ReflectionClass # 2: 3.815 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 3.099 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 2.861 µsec ReflectionFunction # 5: 2.861 µsec ReflectionFunction # 6: 2.861 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 41.962 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 2.861 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 3.099 µsec Cached ReflectionClass # 9: 3.099 µsec
Output for 5.4.23
ReflectionClass # 0: 11.206 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.815 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.861 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.861 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 33.855 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 2.861 µsec Cached ReflectionClass # 6: 3.099 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 2.861 µsec
Output for 5.4.22
ReflectionClass # 0: 13.828 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 34.094 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.4.21
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 19.073 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.4.20
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.000 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.000 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 22.888 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.4.19
ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.815 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 41.008 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.18
ReflectionClass # 0: 9.060 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 2.861 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 30.041 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.4.17
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.4.16
ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 1.192 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.000 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 17.166 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.4.15
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.000 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.000 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 17.881 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.14
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 31.948 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.13
ReflectionClass # 0: 12.159 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 22.888 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.192 µsec
Output for 5.4.12
ReflectionClass # 0: 7.868 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 25.034 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.11
ReflectionClass # 0: 8.821 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 30.994 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.10
ReflectionClass # 0: 6.199 µsec ReflectionClass # 1: 2.861 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.000 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.000 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.000 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 18.120 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.000 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.9
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 33.855 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.4.8
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 23.127 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.4.7
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 3.099 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 22.888 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.4.6
ReflectionClass # 0: 8.106 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 24.080 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.4.5
ReflectionClass # 0: 10.014 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 1.192 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 1.907 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.192 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 1.192 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 24.080 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.000 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.000 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 1.192 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.4
ReflectionClass # 0: 5.007 µsec ReflectionClass # 1: 1.907 µsec ReflectionClass # 2: 1.192 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.146 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 0.000 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.000 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 14,653.921 µsec Cached ReflectionClass # 1: 3.815 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.000 µsec Cached ReflectionClass # 8: 0.000 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.3
ReflectionClass # 0: 12.875 µsec ReflectionClass # 1: 9.060 µsec ReflectionClass # 2: 3.815 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 3.815 µsec ReflectionClass # 6: 4.053 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 3.815 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 8,008.003 µsec Cached ReflectionClass # 1: 3.815 µsec Cached ReflectionClass # 2: 0.000 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.000 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.000 µsec
Output for 5.4.2
ReflectionClass # 0: 5.960 µsec ReflectionClass # 1: 3.815 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 3.815 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 31.948 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.192 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.1
ReflectionClass # 0: 6.914 µsec ReflectionClass # 1: 3.815 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.4.0
ReflectionClass # 0: 7.153 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 4.053 µsec ReflectionFunction # 2: 2.861 µsec ReflectionFunction # 3: 2.861 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 3.099 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 2.861 µsec ReflectionFunction # 8: 2.861 µsec ReflectionFunction # 9: 2.861 µsec Cached ReflectionClass # 0: 39.101 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 2.146 µsec Cached ReflectionClass # 4: 3.099 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 3.099 µsec
Output for 5.3.29
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 13.113 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.3.28
ReflectionClass # 0: -88.930 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 14.067 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 2.146 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.192 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.3.27
ReflectionClass # 0: -94.891 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 11.921 µsec ReflectionClass # 8: 8.106 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 17.166 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 1.192 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.3.26
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 3.815 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.861 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 24.796 µsec Cached ReflectionClass # 1: 10.967 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 3.099 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.3.25
ReflectionClass # 0: -90.837 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 4.053 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 3.099 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 6.199 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 3.815 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 2.861 µsec ReflectionFunction # 5: 3.099 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 25.034 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 2.861 µsec Cached ReflectionClass # 3: 2.861 µsec Cached ReflectionClass # 4: 2.861 µsec Cached ReflectionClass # 5: 2.861 µsec Cached ReflectionClass # 6: 2.861 µsec Cached ReflectionClass # 7: 2.861 µsec Cached ReflectionClass # 8: 2.861 µsec Cached ReflectionClass # 9: 2.861 µsec
Output for 5.3.24
ReflectionClass # 0: -89.884 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 4.053 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 3.099 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 2.861 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 2.861 µsec ReflectionFunction # 3: 2.861 µsec ReflectionFunction # 4: 2.861 µsec ReflectionFunction # 5: 3.099 µsec ReflectionFunction # 6: 2.861 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 2.861 µsec Cached ReflectionClass # 0: 15.974 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 2.861 µsec Cached ReflectionClass # 4: 2.861 µsec Cached ReflectionClass # 5: 2.861 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 2.861 µsec Cached ReflectionClass # 9: 2.861 µsec
Output for 5.3.23
ReflectionClass # 0: -90.837 µsec ReflectionClass # 1: 8.106 µsec ReflectionClass # 2: 5.960 µsec ReflectionClass # 3: 5.007 µsec ReflectionClass # 4: 5.007 µsec ReflectionClass # 5: 5.007 µsec ReflectionClass # 6: 5.007 µsec ReflectionClass # 7: 5.007 µsec ReflectionClass # 8: 5.007 µsec ReflectionClass # 9: 4.053 µsec ReflectionFunction # 0: 8.106 µsec ReflectionFunction # 1: 5.007 µsec ReflectionFunction # 2: 5.007 µsec ReflectionFunction # 3: 5.007 µsec ReflectionFunction # 4: 5.007 µsec ReflectionFunction # 5: 4.053 µsec ReflectionFunction # 6: 4.053 µsec ReflectionFunction # 7: 5.007 µsec ReflectionFunction # 8: 4.053 µsec ReflectionFunction # 9: 4.053 µsec Cached ReflectionClass # 0: 23.842 µsec Cached ReflectionClass # 1: 5.960 µsec Cached ReflectionClass # 2: 4.053 µsec Cached ReflectionClass # 3: 4.053 µsec Cached ReflectionClass # 4: 4.053 µsec Cached ReflectionClass # 5: 4.053 µsec Cached ReflectionClass # 6: 4.053 µsec Cached ReflectionClass # 7: 4.053 µsec Cached ReflectionClass # 8: 4.053 µsec Cached ReflectionClass # 9: 4.053 µsec
Output for 5.3.22
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 16.928 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.3.21
ReflectionClass # 0: -89.884 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 4.053 µsec ReflectionClass # 4: 2.861 µsec ReflectionClass # 5: 4.053 µsec ReflectionClass # 6: 3.099 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 3.099 µsec ReflectionClass # 9: 4.053 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 4.053 µsec ReflectionFunction # 2: 4.053 µsec ReflectionFunction # 3: 2.861 µsec ReflectionFunction # 4: 4.053 µsec ReflectionFunction # 5: 2.861 µsec ReflectionFunction # 6: 3.815 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 49.114 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 2.861 µsec Cached ReflectionClass # 3: 3.099 µsec Cached ReflectionClass # 4: 3.099 µsec Cached ReflectionClass # 5: 2.861 µsec Cached ReflectionClass # 6: 2.861 µsec Cached ReflectionClass # 7: 3.099 µsec Cached ReflectionClass # 8: 3.099 µsec Cached ReflectionClass # 9: 3.099 µsec
Output for 5.3.20
ReflectionClass # 0: -89.884 µsec ReflectionClass # 1: 7.153 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 2.861 µsec ReflectionClass # 5: 2.861 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 2.861 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 2.861 µsec ReflectionFunction # 3: 2.861 µsec ReflectionFunction # 4: 2.861 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 2.861 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 41.008 µsec Cached ReflectionClass # 1: 2.861 µsec Cached ReflectionClass # 2: 2.861 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 3.099 µsec Cached ReflectionClass # 6: 2.861 µsec Cached ReflectionClass # 7: 2.861 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.861 µsec
Output for 5.3.19
ReflectionClass # 0: -91.791 µsec ReflectionClass # 1: 4.768 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 2.861 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 2.861 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 33.140 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 2.861 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.861 µsec
Output for 5.3.18
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.192 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.3.17
ReflectionClass # 0: -91.791 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 2.861 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 3.099 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 2.146 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 2.861 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 25.988 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 3.099 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 3.099 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.3.16
ReflectionClass # 0: -93.937 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 20.027 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 2.146 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.3.15
ReflectionClass # 0: -90.837 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 3.099 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 2.861 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 3.815 µsec ReflectionFunction # 2: 3.099 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 30.994 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 2.861 µsec Cached ReflectionClass # 3: 2.861 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 2.861 µsec Cached ReflectionClass # 8: 2.861 µsec Cached ReflectionClass # 9: 2.861 µsec
Output for 5.3.14
ReflectionClass # 0: -91.791 µsec ReflectionClass # 1: 6.914 µsec ReflectionClass # 2: 5.007 µsec ReflectionClass # 3: 5.007 µsec ReflectionClass # 4: 4.053 µsec ReflectionClass # 5: 4.053 µsec ReflectionClass # 6: 4.053 µsec ReflectionClass # 7: 4.053 µsec ReflectionClass # 8: 4.053 µsec ReflectionClass # 9: 4.053 µsec ReflectionFunction # 0: 8.106 µsec ReflectionFunction # 1: 5.007 µsec ReflectionFunction # 2: 3.815 µsec ReflectionFunction # 3: 5.007 µsec ReflectionFunction # 4: 4.053 µsec ReflectionFunction # 5: 4.053 µsec ReflectionFunction # 6: 4.053 µsec ReflectionFunction # 7: 4.053 µsec ReflectionFunction # 8: 4.053 µsec ReflectionFunction # 9: 4.053 µsec Cached ReflectionClass # 0: 56.982 µsec Cached ReflectionClass # 1: 5.960 µsec Cached ReflectionClass # 2: 5.007 µsec Cached ReflectionClass # 3: 4.053 µsec Cached ReflectionClass # 4: 5.007 µsec Cached ReflectionClass # 5: 4.053 µsec Cached ReflectionClass # 6: 4.053 µsec Cached ReflectionClass # 7: 5.007 µsec Cached ReflectionClass # 8: 4.053 µsec Cached ReflectionClass # 9: 4.053 µsec
Output for 5.3.13
ReflectionClass # 0: -85.831 µsec ReflectionClass # 1: 9.060 µsec ReflectionClass # 2: 5.007 µsec ReflectionClass # 3: 4.053 µsec ReflectionClass # 4: 4.053 µsec ReflectionClass # 5: 4.053 µsec ReflectionClass # 6: 4.053 µsec ReflectionClass # 7: 4.053 µsec ReflectionClass # 8: 4.053 µsec ReflectionClass # 9: 4.053 µsec ReflectionFunction # 0: 7.153 µsec ReflectionFunction # 1: 5.007 µsec ReflectionFunction # 2: 4.053 µsec ReflectionFunction # 3: 4.053 µsec ReflectionFunction # 4: 4.053 µsec ReflectionFunction # 5: 4.053 µsec ReflectionFunction # 6: 3.815 µsec ReflectionFunction # 7: 3.815 µsec ReflectionFunction # 8: 5.007 µsec ReflectionFunction # 9: 4.053 µsec Cached ReflectionClass # 0: 34.094 µsec Cached ReflectionClass # 1: 5.007 µsec Cached ReflectionClass # 2: 4.053 µsec Cached ReflectionClass # 3: 3.815 µsec Cached ReflectionClass # 4: 3.815 µsec Cached ReflectionClass # 5: 3.815 µsec Cached ReflectionClass # 6: 4.053 µsec Cached ReflectionClass # 7: 3.099 µsec Cached ReflectionClass # 8: 4.053 µsec Cached ReflectionClass # 9: 4.053 µsec
Output for 5.3.12
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 4.053 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 2.861 µsec ReflectionClass # 5: 2.861 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 3.099 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 3.099 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 4.053 µsec Cached ReflectionClass # 0: 29.087 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 3.099 µsec Cached ReflectionClass # 3: 3.099 µsec Cached ReflectionClass # 4: 3.099 µsec Cached ReflectionClass # 5: 3.099 µsec Cached ReflectionClass # 6: 2.861 µsec Cached ReflectionClass # 7: 2.861 µsec Cached ReflectionClass # 8: 2.861 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.3.11
ReflectionClass # 0: -90.837 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 4.053 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 3.099 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 3.099 µsec ReflectionClass # 9: 3.099 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 3.099 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 3.099 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 3.099 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 23.842 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 2.861 µsec Cached ReflectionClass # 4: 3.099 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 2.861 µsec Cached ReflectionClass # 7: 1.907 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.861 µsec
Output for 5.3.10
ReflectionClass # 0: -89.884 µsec ReflectionClass # 1: 10.967 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 2.861 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 2.861 µsec ReflectionClass # 8: 2.861 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 5.007 µsec ReflectionFunction # 3: 4.053 µsec ReflectionFunction # 4: 5.007 µsec ReflectionFunction # 5: 3.815 µsec ReflectionFunction # 6: 4.053 µsec ReflectionFunction # 7: 5.007 µsec ReflectionFunction # 8: 5.007 µsec ReflectionFunction # 9: 5.007 µsec Cached ReflectionClass # 0: 43.869 µsec Cached ReflectionClass # 1: 3.815 µsec Cached ReflectionClass # 2: 3.099 µsec Cached ReflectionClass # 3: 3.815 µsec Cached ReflectionClass # 4: 4.053 µsec Cached ReflectionClass # 5: 5.007 µsec Cached ReflectionClass # 6: 5.007 µsec Cached ReflectionClass # 7: 5.007 µsec Cached ReflectionClass # 8: 5.007 µsec Cached ReflectionClass # 9: 5.007 µsec
Output for 5.3.9
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 2.146 µsec ReflectionClass # 8: 1.192 µsec ReflectionClass # 9: 1.192 µsec ReflectionFunction # 0: 2.861 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.192 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 15.020 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.3.8
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 4.053 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 1.907 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 0.954 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 23.127 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.3.7
ReflectionClass # 0: -91.791 µsec ReflectionClass # 1: 6.199 µsec ReflectionClass # 2: 3.099 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 7.153 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.146 µsec ReflectionFunction # 2: 0.954 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 2.146 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 1.192 µsec ReflectionFunction # 9: 2.861 µsec Cached ReflectionClass # 0: 30.994 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.3.6
ReflectionClass # 0: -89.884 µsec ReflectionClass # 1: 6.199 µsec ReflectionClass # 2: 4.053 µsec ReflectionClass # 3: 3.099 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 2.861 µsec ReflectionClass # 6: 2.861 µsec ReflectionClass # 7: 5.007 µsec ReflectionClass # 8: 4.053 µsec ReflectionClass # 9: 2.861 µsec ReflectionFunction # 0: 5.960 µsec ReflectionFunction # 1: 4.053 µsec ReflectionFunction # 2: 2.861 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 2.861 µsec ReflectionFunction # 5: 2.861 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.861 µsec ReflectionFunction # 8: 1.907 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 4.053 µsec Cached ReflectionClass # 2: 3.099 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.861 µsec Cached ReflectionClass # 5: 2.861 µsec Cached ReflectionClass # 6: 3.099 µsec Cached ReflectionClass # 7: 3.099 µsec Cached ReflectionClass # 8: 3.099 µsec Cached ReflectionClass # 9: 3.099 µsec
Output for 5.3.5
ReflectionClass # 0: -90.837 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 2.861 µsec ReflectionClass # 4: 3.099 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 3.099 µsec ReflectionClass # 7: 3.099 µsec ReflectionClass # 8: 2.861 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 3.099 µsec ReflectionFunction # 4: 3.099 µsec ReflectionFunction # 5: 2.861 µsec ReflectionFunction # 6: 2.861 µsec ReflectionFunction # 7: 1.907 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 29.087 µsec Cached ReflectionClass # 1: 3.815 µsec Cached ReflectionClass # 2: 1.907 µsec Cached ReflectionClass # 3: 2.146 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 1.907 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 3.099 µsec Cached ReflectionClass # 9: 3.099 µsec
Output for 5.3.4
ReflectionClass # 0: -93.937 µsec ReflectionClass # 1: 3.815 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 0.954 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 1.192 µsec ReflectionClass # 6: 0.954 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 1.907 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 1.192 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.146 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 20.981 µsec Cached ReflectionClass # 1: 2.146 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 0.954 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 1.192 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.3.3
ReflectionClass # 0: -85.831 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 1.907 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 2.146 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 10.014 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 4.053 µsec ReflectionFunction # 1: 1.907 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 1.907 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 1.907 µsec ReflectionFunction # 6: 3.099 µsec ReflectionFunction # 7: 3.099 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 3.099 µsec Cached ReflectionClass # 0: 25.034 µsec Cached ReflectionClass # 1: 3.815 µsec Cached ReflectionClass # 2: 3.099 µsec Cached ReflectionClass # 3: 3.099 µsec Cached ReflectionClass # 4: 3.099 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 3.099 µsec Cached ReflectionClass # 7: 2.861 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 1.907 µsec
Output for 5.3.2
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 5.007 µsec ReflectionClass # 2: 2.861 µsec ReflectionClass # 3: 1.907 µsec ReflectionClass # 4: 2.146 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 2.861 µsec ReflectionFunction # 2: 1.907 µsec ReflectionFunction # 3: 2.146 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 1.907 µsec ReflectionFunction # 7: 2.861 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 1.907 µsec Cached ReflectionClass # 0: 26.941 µsec Cached ReflectionClass # 1: 1.907 µsec Cached ReflectionClass # 2: 2.146 µsec Cached ReflectionClass # 3: 1.907 µsec Cached ReflectionClass # 4: 2.146 µsec Cached ReflectionClass # 5: 1.907 µsec Cached ReflectionClass # 6: 2.861 µsec Cached ReflectionClass # 7: 2.146 µsec Cached ReflectionClass # 8: 1.907 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.3.1
ReflectionClass # 0: -94.891 µsec ReflectionClass # 1: 2.146 µsec ReflectionClass # 2: 0.954 µsec ReflectionClass # 3: 1.192 µsec ReflectionClass # 4: 0.954 µsec ReflectionClass # 5: 0.954 µsec ReflectionClass # 6: 1.192 µsec ReflectionClass # 7: 0.954 µsec ReflectionClass # 8: 0.954 µsec ReflectionClass # 9: 0.954 µsec ReflectionFunction # 0: 3.099 µsec ReflectionFunction # 1: 0.954 µsec ReflectionFunction # 2: 1.192 µsec ReflectionFunction # 3: 0.954 µsec ReflectionFunction # 4: 0.954 µsec ReflectionFunction # 5: 0.954 µsec ReflectionFunction # 6: 0.954 µsec ReflectionFunction # 7: 1.192 µsec ReflectionFunction # 8: 0.954 µsec ReflectionFunction # 9: 0.954 µsec Cached ReflectionClass # 0: 11.921 µsec Cached ReflectionClass # 1: 0.954 µsec Cached ReflectionClass # 2: 0.954 µsec Cached ReflectionClass # 3: 1.192 µsec Cached ReflectionClass # 4: 0.954 µsec Cached ReflectionClass # 5: 0.954 µsec Cached ReflectionClass # 6: 0.954 µsec Cached ReflectionClass # 7: 0.954 µsec Cached ReflectionClass # 8: 0.954 µsec Cached ReflectionClass # 9: 0.954 µsec
Output for 5.3.0
ReflectionClass # 0: -92.983 µsec ReflectionClass # 1: 5.960 µsec ReflectionClass # 2: 2.146 µsec ReflectionClass # 3: 2.146 µsec ReflectionClass # 4: 1.907 µsec ReflectionClass # 5: 1.907 µsec ReflectionClass # 6: 2.146 µsec ReflectionClass # 7: 1.907 µsec ReflectionClass # 8: 1.907 µsec ReflectionClass # 9: 2.146 µsec ReflectionFunction # 0: 5.007 µsec ReflectionFunction # 1: 3.099 µsec ReflectionFunction # 2: 2.146 µsec ReflectionFunction # 3: 2.861 µsec ReflectionFunction # 4: 1.907 µsec ReflectionFunction # 5: 2.146 µsec ReflectionFunction # 6: 2.146 µsec ReflectionFunction # 7: 2.861 µsec ReflectionFunction # 8: 2.146 µsec ReflectionFunction # 9: 2.146 µsec Cached ReflectionClass # 0: 22.173 µsec Cached ReflectionClass # 1: 3.099 µsec Cached ReflectionClass # 2: 3.099 µsec Cached ReflectionClass # 3: 2.861 µsec Cached ReflectionClass # 4: 1.907 µsec Cached ReflectionClass # 5: 2.146 µsec Cached ReflectionClass # 6: 2.146 µsec Cached ReflectionClass # 7: 2.861 µsec Cached ReflectionClass # 8: 2.146 µsec Cached ReflectionClass # 9: 2.146 µsec
Output for 5.2.3 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION in /in/3r021 on line 13
Process exited with code 255.
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
<br /> <b>Parse error</b>: syntax error, unexpected T_FUNCTION in <b>/in/3r021</b> on line <b>13</b><br />
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, 5.0.0 - 5.0.5
<br /> <b>Parse error</b>: parse error, unexpected T_FUNCTION in <b>/in/3r021</b> on line <b>13</b><br />
Process exited with code 255.
Output for 4.3.2 - 4.3.4
<br /> <b>Parse error</b>: parse error in <b>/in/3r021</b> on line <b>13</b><br />
Process exited with code 255.

preferences:
302.53 ms | 401 KiB | 325 Q