3v4l.org

run code in 300+ PHP versions simultaneously
<?php //https://github.com/php/php-src/blob/master/Zend/micro_bench.php function hallo() { } function simpleucall($n) { for ($i = 0; $i < $n; $i++) hallo(); } function simpleudcall($n) { for ($i = 0; $i < $n; $i++) hallo2(); } function hallo2() { } function simpleicall($n) { for ($i = 0; $i < $n; $i++) func_num_args(); } class Foo { static $a = 0; public $b = 0; const TEST = 0; static function read_static($n) { for ($i = 0; $i < $n; ++$i) { $x = self::$a; } } static function write_static($n) { for ($i = 0; $i < $n; ++$i) { self::$a = 0; } } static function isset_static($n) { for ($i = 0; $i < $n; ++$i) { $x = isset(self::$a); } } static function empty_static($n) { for ($i = 0; $i < $n; ++$i) { $x = empty(self::$a); } } static function f() { } static function call_static($n) { for ($i = 0; $i < $n; ++$i) { self::f(); } } function read_prop($n) { for ($i = 0; $i < $n; ++$i) { $x = $this->b; } } function write_prop($n) { for ($i = 0; $i < $n; ++$i) { $this->b = 0; } } function assign_add_prop($n) { for ($i = 0; $i < $n; ++$i) { $this->b += 2; } } function pre_inc_prop($n) { for ($i = 0; $i < $n; ++$i) { ++$this->b; } } function pre_dec_prop($n) { for ($i = 0; $i < $n; ++$i) { --$this->b; } } function post_inc_prop($n) { for ($i = 0; $i < $n; ++$i) { $this->b++; } } function post_dec_prop($n) { for ($i = 0; $i < $n; ++$i) { $this->b--; } } function isset_prop($n) { for ($i = 0; $i < $n; ++$i) { $x = isset($this->b); } } function empty_prop($n) { for ($i = 0; $i < $n; ++$i) { $x = empty($this->b); } } function g() { } function call($n) { for ($i = 0; $i < $n; ++$i) { $this->g(); } } function read_const($n) { for ($i = 0; $i < $n; ++$i) { $x = $this::TEST; } } } function read_static($n) { for ($i = 0; $i < $n; ++$i) { $x = Foo::$a; } } function write_static($n) { for ($i = 0; $i < $n; ++$i) { Foo::$a = 0; } } function isset_static($n) { for ($i = 0; $i < $n; ++$i) { $x = isset(Foo::$a); } } function empty_static($n) { for ($i = 0; $i < $n; ++$i) { $x = empty(Foo::$a); } } function call_static($n) { for ($i = 0; $i < $n; ++$i) { Foo::f(); } } function create_object($n) { for ($i = 0; $i < $n; ++$i) { $x = new Foo(); } } define('TEST', null); function read_const($n) { for ($i = 0; $i < $n; ++$i) { $x = TEST; } } function read_auto_global($n) { for ($i = 0; $i < $n; ++$i) { $x = $_GET; } } $g_var = 0; function read_global_var($n) { for ($i = 0; $i < $n; ++$i) { $x = $GLOBALS['g_var']; } } function read_hash($n) { $hash = array('test' => 0); for ($i = 0; $i < $n; ++$i) { $x = $hash['test']; } } function read_str_offset($n) { $str = "test"; for ($i = 0; $i < $n; ++$i) { $x = $str[1]; } } function issetor($n) { $val = array(0,1,2,3,4,5,6,7,8,9); for ($i = 0; $i < $n; ++$i) { $x = $val ?: null; } } function issetor2($n) { $f = false; $j = 0; for ($i = 0; $i < $n; ++$i) { $x = $f ?: $j + 1; } } function ternary($n) { $val = array(0,1,2,3,4,5,6,7,8,9); $f = false; for ($i = 0; $i < $n; ++$i) { $x = $f ? null : $val; } } function ternary2($n) { $f = false; $j = 0; for ($i = 0; $i < $n; ++$i) { $x = $f ? $f : $j + 1; } } /*****/ function empty_loop($n) { for ($i = 0; $i < $n; ++$i) { } } function getmicrotime() { $t = gettimeofday(); return ($t['sec'] + $t['usec'] / 1000000); } function start_test() { ob_start(); return getmicrotime(); } function end_test($start, $name, $overhead = null) { global $total; global $last_time; $end = getmicrotime(); ob_end_clean(); $last_time = $end-$start; $total += $last_time; $num = number_format($last_time,3); $pad = str_repeat(" ", 24-strlen($name)-strlen($num)); if (is_null($overhead)) { echo $name.$pad.$num."\n"; } else { $num2 = number_format($last_time - $overhead,3); echo $name.$pad.$num." ".$num2."\n"; } ob_start(); return getmicrotime(); } function total() { global $total; $pad = str_repeat("-", 24); echo $pad."\n"; $num = number_format($total,3); $pad = str_repeat(" ", 24-strlen("Total")-strlen($num)); echo "Total".$pad.$num."\n"; } const N = 5000000; $t0 = $t = start_test(); empty_loop(N); $t = end_test($t, 'empty_loop'); $overhead = $last_time; simpleucall(N); $t = end_test($t, 'func()', $overhead); simpleudcall(N); $t = end_test($t, 'undef_func()', $overhead); simpleicall(N); $t = end_test($t, 'int_func()', $overhead); Foo::read_static(N); $t = end_test($t, '$x = self::$x', $overhead); Foo::write_static(N); $t = end_test($t, 'self::$x = 0', $overhead); Foo::isset_static(N); $t = end_test($t, 'isset(self::$x)', $overhead); Foo::empty_static(N); $t = end_test($t, 'empty(self::$x)', $overhead); read_static(N); $t = end_test($t, '$x = Foo::$x', $overhead); write_static(N); $t = end_test($t, 'Foo::$x = 0', $overhead); isset_static(N); $t = end_test($t, 'isset(Foo::$x)', $overhead); empty_static(N); $t = end_test($t, 'empty(Foo::$x)', $overhead); Foo::call_static(N); $t = end_test($t, 'self::f()', $overhead); call_static(N); $t = end_test($t, 'Foo::f()', $overhead); $x = new Foo(); $x->read_prop(N); $t = end_test($t, '$x = $this->x', $overhead); $x->write_prop(N); $t = end_test($t, '$this->x = 0', $overhead); $x->assign_add_prop(N); $t = end_test($t, '$this->x += 2', $overhead); $x->pre_inc_prop(N); $t = end_test($t, '++$this->x', $overhead); $x->pre_dec_prop(N); $t = end_test($t, '--$this->x', $overhead); $x->post_inc_prop(N); $t = end_test($t, '$this->x++', $overhead); $x->post_dec_prop(N); $t = end_test($t, '$this->x--', $overhead); $x->isset_prop(N); $t = end_test($t, 'isset($this->x)', $overhead); $x->empty_prop(N); $t = end_test($t, 'empty($this->x)', $overhead); $x->call(N); $t = end_test($t, '$this->f()', $overhead); $x->read_const(N); $t = end_test($t, '$x = Foo::TEST', $overhead); create_object(N); $t = end_test($t, 'new Foo()', $overhead); read_const(N); $t = end_test($t, '$x = TEST', $overhead); read_auto_global(N); $t = end_test($t, '$x = $_GET', $overhead); read_global_var(N); $t = end_test($t, '$x = $GLOBALS[\'v\']', $overhead); read_hash(N); $t = end_test($t, '$x = $hash[\'v\']', $overhead); read_str_offset(N); $t = end_test($t, '$x = $str[0]', $overhead); issetor(N); $t = end_test($t, '$x = $a ?: null', $overhead); issetor2(N); $t = end_test($t, '$x = $f ?: tmp', $overhead); ternary(N); $t = end_test($t, '$x = $f ? $f : $a', $overhead); ternary2(N); $t = end_test($t, '$x = $f ? $f : tmp', $overhead); total($t0, "Total");
Output for 8.3.6
empty_loop 0.025 func() 0.067 0.042 undef_func() 0.079 0.054 int_func() 0.046 0.021 $x = self::$x 0.099 0.074 self::$x = 0 0.077 0.052 isset(self::$x) 0.101 0.076 empty(self::$x) 0.090 0.065 $x = Foo::$x 0.064 0.039 Foo::$x = 0 0.043 0.018 isset(Foo::$x) 0.054 0.029 empty(Foo::$x) 0.061 0.036 self::f() 0.093 0.068 Foo::f() 0.086 0.061 $x = $this->x 0.059 0.034 $this->x = 0 0.044 0.018 $this->x += 2 0.076 0.051 ++$this->x 0.071 0.046 --$this->x 0.071 0.046 $this->x++ 0.074 0.049 $this->x-- 0.071 0.046 isset($this->x) 0.081 0.056 empty($this->x) 0.097 0.072 $this->f() 0.074 0.049 $x = Foo::TEST 0.107 0.082
Process exited with code 137.
Output for 8.3.5
empty_loop 0.032 func() 0.075 0.043 undef_func() 0.076 0.044 int_func() 0.042 0.010 $x = self::$x 0.099 0.067 self::$x = 0 0.081 0.049 isset(self::$x) 0.092 0.060 empty(self::$x) 0.096 0.064 $x = Foo::$x 0.065 0.033 Foo::$x = 0 0.045 0.013 isset(Foo::$x) 0.063 0.031 empty(Foo::$x) 0.062 0.030 self::f() 0.103 0.071 Foo::f() 0.089 0.057 $x = $this->x 0.048 0.016 $this->x = 0 0.048 0.016 $this->x += 2 0.076 0.044 ++$this->x 0.068 0.036 --$this->x 0.068 0.036 $this->x++ 0.069 0.037 $this->x-- 0.069 0.037 isset($this->x) 0.084 0.052 empty($this->x) 0.082 0.050 $this->f() 0.082 0.050 $x = Foo::TEST 0.092 0.060
Process exited with code 137.
Output for 8.3.4
empty_loop 0.025 func() 0.058 0.033 undef_func() 0.068 0.044 int_func() 0.049 0.024 $x = self::$x 0.105 0.080 self::$x = 0 0.079 0.054 isset(self::$x) 0.107 0.083 empty(self::$x) 0.111 0.087 $x = Foo::$x 0.082 0.057 Foo::$x = 0 0.041 0.017 isset(Foo::$x) 0.066 0.041 empty(Foo::$x) 0.070 0.045 self::f() 0.092 0.067 Foo::f() 0.079 0.054 $x = $this->x 0.053 0.029 $this->x = 0 0.043 0.018 $this->x += 2 0.074 0.049 ++$this->x 0.069 0.044 --$this->x 0.069 0.044 $this->x++ 0.073 0.048 $this->x-- 0.071 0.047 isset($this->x) 0.077 0.053 empty($this->x) 0.089 0.064 $this->f() 0.073 0.049 $x = Foo::TEST 0.087 0.062
Process exited with code 137.
Output for 8.3.3
empty_loop 0.025 func() 0.084 0.059 undef_func() 0.069 0.044 int_func() 0.051 0.026 $x = self::$x 0.107 0.083 self::$x = 0 0.079 0.055 isset(self::$x) 0.109 0.084 empty(self::$x) 0.112 0.087 $x = Foo::$x 0.071 0.046 Foo::$x = 0 0.056 0.031 isset(Foo::$x) 0.071 0.046 empty(Foo::$x) 0.076 0.052 self::f() 0.108 0.084 Foo::f() 0.099 0.074 $x = $this->x 0.056 0.031 $this->x = 0 0.043 0.018 $this->x += 2 0.072 0.047 ++$this->x 0.066 0.041 --$this->x 0.065 0.040 $this->x++ 0.082 0.057 $this->x-- 0.070 0.046 isset($this->x) 0.079 0.054 empty($this->x) 0.091 0.067 $this->f() 0.073 0.049 $x = Foo::TEST 0.083 0.059
Process exited with code 137.
Output for 8.3.2
empty_loop 0.013 func() 0.031 0.018 undef_func() 0.036 0.023 int_func() 0.026 0.013 $x = self::$x 0.055 0.042 self::$x = 0 0.040 0.026 isset(self::$x) 0.054 0.041 empty(self::$x) 0.057 0.044 $x = Foo::$x 0.040 0.026 Foo::$x = 0 0.024 0.011 isset(Foo::$x) 0.036 0.023 empty(Foo::$x) 0.030 0.017 self::f() 0.049 0.036 Foo::f() 0.042 0.028 $x = $this->x 0.029 0.015 $this->x = 0 0.023 0.010 $this->x += 2 0.041 0.028 ++$this->x 0.037 0.023 --$this->x 0.035 0.022 $this->x++ 0.037 0.024 $this->x-- 0.035 0.022 isset($this->x) 0.045 0.032 empty($this->x) 0.054 0.041 $this->f() 0.040 0.027 $x = Foo::TEST 0.048 0.035 new Foo() 0.115 0.102 $x = TEST 0.027 0.014 $x = $_GET 0.044 0.030 $x = $GLOBALS['v'] 0.045 0.032 $x = $hash['v'] 0.057 0.044 $x = $str[0] 0.049 0.036 $x = $a ?: null 0.037 0.023 $x = $f ?: tmp 0.045 0.032 $x = $f ? $f : $a 0.034 0.021 $x = $f ? $f : tmp 0.037 0.024 ------------------------ Total 1.448
Output for 8.3.1
empty_loop 0.013 func() 0.032 0.018 undef_func() 0.037 0.024 int_func() 0.024 0.011 $x = self::$x 0.056 0.043 self::$x = 0 0.039 0.026 isset(self::$x) 0.053 0.040 empty(self::$x) 0.056 0.042 $x = Foo::$x 0.038 0.025 Foo::$x = 0 0.023 0.010 isset(Foo::$x) 0.035 0.022 empty(Foo::$x) 0.041 0.028 self::f() 0.049 0.036 Foo::f() 0.042 0.029 $x = $this->x 0.026 0.013 $this->x = 0 0.023 0.010 $this->x += 2 0.039 0.025 ++$this->x 0.037 0.024 --$this->x 0.037 0.024 $this->x++ 0.037 0.024 $this->x-- 0.037 0.024 isset($this->x) 0.041 0.028 empty($this->x) 0.048 0.035 $this->f() 0.039 0.026 $x = Foo::TEST 0.041 0.028 new Foo() 0.117 0.104 $x = TEST 0.029 0.016 $x = $_GET 0.045 0.032 $x = $GLOBALS['v'] 0.043 0.030 $x = $hash['v'] 0.056 0.043 $x = $str[0] 0.045 0.032 $x = $a ?: null 0.037 0.024 $x = $f ?: tmp 0.044 0.031 $x = $f ? $f : $a 0.035 0.022 $x = $f ? $f : tmp 0.037 0.024 ------------------------ Total 1.435
Output for 8.3.0
empty_loop 0.013 func() 0.031 0.018 undef_func() 0.037 0.024 int_func() 0.025 0.012 $x = self::$x 0.057 0.044 self::$x = 0 0.044 0.031 isset(self::$x) 0.059 0.045 empty(self::$x) 0.062 0.049 $x = Foo::$x 0.035 0.022 Foo::$x = 0 0.022 0.009 isset(Foo::$x) 0.037 0.024 empty(Foo::$x) 0.040 0.026 self::f() 0.049 0.036 Foo::f() 0.042 0.029 $x = $this->x 0.027 0.014 $this->x = 0 0.023 0.010 $this->x += 2 0.039 0.026 ++$this->x 0.036 0.023 --$this->x 0.035 0.022 $this->x++ 0.037 0.024 $this->x-- 0.034 0.021 isset($this->x) 0.040 0.027 empty($this->x) 0.050 0.036 $this->f() 0.040 0.027 $x = Foo::TEST 0.045 0.032 new Foo() 0.113 0.100 $x = TEST 0.026 0.013 $x = $_GET 0.046 0.032 $x = $GLOBALS['v'] 0.044 0.030 $x = $hash['v'] 0.056 0.043 $x = $str[0] 0.044 0.031 $x = $a ?: null 0.037 0.024 $x = $f ?: tmp 0.044 0.031 $x = $f ? $f : $a 0.034 0.021 $x = $f ? $f : tmp 0.037 0.024 ------------------------ Total 1.440
Output for 8.2.18
empty_loop 0.026 func() 0.066 0.040 undef_func() 0.066 0.040 int_func() 0.049 0.022 $x = self::$x 0.095 0.069 self::$x = 0 0.074 0.048 isset(self::$x) 0.094 0.068 empty(self::$x) 0.097 0.071 $x = Foo::$x 0.056 0.030 Foo::$x = 0 0.041 0.014 isset(Foo::$x) 0.058 0.032 empty(Foo::$x) 0.064 0.038 self::f() 0.091 0.065 Foo::f() 0.077 0.050 $x = $this->x 0.053 0.027 $this->x = 0 0.041 0.015 $this->x += 2 0.071 0.044 ++$this->x 0.064 0.038 --$this->x 0.071 0.045 $this->x++ 0.066 0.040 $this->x-- 0.066 0.040 isset($this->x) 0.076 0.050 empty($this->x) 0.095 0.069 $this->f() 0.072 0.046 $x = Foo::TEST 0.088 0.062 new Foo() 0.232 0.206
Process exited with code 137.
Output for 8.2.17
empty_loop 0.031 func() 0.077 0.047 undef_func() 0.069 0.039 int_func() 0.046 0.016 $x = self::$x 0.099 0.069 self::$x = 0 0.072 0.042 isset(self::$x) 0.102 0.071 empty(self::$x) 0.104 0.074 $x = Foo::$x 0.071 0.040 Foo::$x = 0 0.053 0.023 isset(Foo::$x) 0.071 0.040 empty(Foo::$x) 0.060 0.030 self::f() 0.106 0.075 Foo::f() 0.093 0.063 $x = $this->x 0.053 0.022 $this->x = 0 0.041 0.010 $this->x += 2 0.073 0.043 ++$this->x 0.063 0.032 --$this->x 0.063 0.033 $this->x++ 0.066 0.035 $this->x-- 0.063 0.033 isset($this->x) 0.079 0.048 empty($this->x) 0.094 0.063 $this->f() 0.073 0.042 $x = Foo::TEST 0.082 0.052
Process exited with code 137.
Output for 8.2.16
empty_loop 0.025 func() 0.071 0.046 undef_func() 0.069 0.044 int_func() 0.048 0.023 $x = self::$x 0.111 0.086 self::$x = 0 0.079 0.054 isset(self::$x) 0.107 0.082 empty(self::$x) 0.111 0.086 $x = Foo::$x 0.069 0.044 Foo::$x = 0 0.040 0.016 isset(Foo::$x) 0.063 0.039 empty(Foo::$x) 0.067 0.042 self::f() 0.096 0.071 Foo::f() 0.084 0.059 $x = $this->x 0.050 0.026 $this->x = 0 0.041 0.016 $this->x += 2 0.071 0.047 ++$this->x 0.066 0.041 --$this->x 0.066 0.041 $this->x++ 0.079 0.054 $this->x-- 0.085 0.060 isset($this->x) 0.076 0.052 empty($this->x) 0.091 0.066 $this->f() 0.076 0.051 $x = Foo::TEST 0.087 0.063
Process exited with code 137.
Output for 8.2.15
empty_loop 0.026 func() 0.044 0.018 undef_func() 0.037 0.010 int_func() 0.030 0.004 $x = self::$x 0.057 0.031 self::$x = 0 0.044 0.017 isset(self::$x) 0.058 0.031 empty(self::$x) 0.060 0.034 $x = Foo::$x 0.038 0.012 Foo::$x = 0 0.025 -0.002 isset(Foo::$x) 0.039 0.013 empty(Foo::$x) 0.045 0.019 self::f() 0.053 0.027 Foo::f() 0.046 0.020 $x = $this->x 0.030 0.004 $this->x = 0 0.022 -0.004 $this->x += 2 0.039 0.013 ++$this->x 0.037 0.011 --$this->x 0.037 0.011 $this->x++ 0.037 0.011 $this->x-- 0.037 0.011 isset($this->x) 0.045 0.019 empty($this->x) 0.053 0.027 $this->f() 0.038 0.012 $x = Foo::TEST 0.046 0.020 new Foo() 0.115 0.088 $x = TEST 0.030 0.004 $x = $_GET 0.048 0.022 $x = $GLOBALS['v'] 0.045 0.019 $x = $hash['v'] 0.061 0.034 $x = $str[0] 0.049 0.023 $x = $a ?: null 0.040 0.014 $x = $f ?: tmp 0.045 0.019 $x = $f ? $f : $a 0.034 0.008 $x = $f ? $f : tmp 0.037 0.011 ------------------------ Total 1.529
Output for 8.2.14
empty_loop 0.013 func() 0.039 0.026 undef_func() 0.037 0.024 int_func() 0.030 0.017 $x = self::$x 0.055 0.042 self::$x = 0 0.042 0.029 isset(self::$x) 0.055 0.042 empty(self::$x) 0.059 0.046 $x = Foo::$x 0.039 0.026 Foo::$x = 0 0.025 0.012 isset(Foo::$x) 0.038 0.025 empty(Foo::$x) 0.044 0.031 self::f() 0.050 0.037 Foo::f() 0.047 0.034 $x = $this->x 0.030 0.017 $this->x = 0 0.022 0.009 $this->x += 2 0.041 0.028 ++$this->x 0.039 0.025 --$this->x 0.038 0.025 $this->x++ 0.039 0.025 $this->x-- 0.038 0.025 isset($this->x) 0.046 0.033 empty($this->x) 0.053 0.040 $this->f() 0.042 0.028 $x = Foo::TEST 0.044 0.031 new Foo() 0.130 0.117 $x = TEST 0.030 0.017 $x = $_GET 0.048 0.035 $x = $GLOBALS['v'] 0.045 0.032 $x = $hash['v'] 0.060 0.047 $x = $str[0] 0.052 0.039 $x = $a ?: null 0.040 0.027 $x = $f ?: tmp 0.045 0.032 $x = $f ? $f : $a 0.034 0.021 $x = $f ? $f : tmp 0.037 0.024 ------------------------ Total 1.527
Output for 8.2.13
empty_loop 0.013 func() 0.037 0.023 undef_func() 0.037 0.024 int_func() 0.027 0.014 $x = self::$x 0.054 0.041 self::$x = 0 0.040 0.026 isset(self::$x) 0.054 0.041 empty(self::$x) 0.056 0.043 $x = Foo::$x 0.041 0.028 Foo::$x = 0 0.025 0.011 isset(Foo::$x) 0.038 0.025 empty(Foo::$x) 0.041 0.028 self::f() 0.049 0.036 Foo::f() 0.045 0.032 $x = $this->x 0.031 0.018 $this->x = 0 0.026 0.013 $this->x += 2 0.039 0.026 ++$this->x 0.036 0.023 --$this->x 0.036 0.023 $this->x++ 0.041 0.028 $this->x-- 0.036 0.022 isset($this->x) 0.045 0.032 empty($this->x) 0.052 0.039 $this->f() 0.041 0.028 $x = Foo::TEST 0.045 0.032 new Foo() 0.117 0.104 $x = TEST 0.029 0.016 $x = $_GET 0.046 0.033 $x = $GLOBALS['v'] 0.045 0.032 $x = $hash['v'] 0.060 0.047 $x = $str[0] 0.049 0.036 $x = $a ?: null 0.041 0.028 $x = $f ?: tmp 0.049 0.036 $x = $f ? $f : $a 0.034 0.021 $x = $f ? $f : tmp 0.041 0.028 ------------------------ Total 1.497
Output for 8.2.12
empty_loop 0.014 func() 0.044 0.030 undef_func() 0.043 0.029 int_func() 0.034 0.020 $x = self::$x 0.062 0.048 self::$x = 0 0.049 0.035 isset(self::$x) 0.048 0.035 empty(self::$x) 0.051 0.037 $x = Foo::$x 0.036 0.022 Foo::$x = 0 0.032 0.018 isset(Foo::$x) 0.035 0.021 empty(Foo::$x) 0.045 0.031 self::f() 0.067 0.053 Foo::f() 0.049 0.036 $x = $this->x 0.035 0.021 $this->x = 0 0.029 0.015 $this->x += 2 0.051 0.038 ++$this->x 0.057 0.043 --$this->x 0.039 0.026 $this->x++ 0.046 0.032 $this->x-- 0.043 0.029 isset($this->x) 0.052 0.038 empty($this->x) 0.052 0.038 $this->f() 0.043 0.029 $x = Foo::TEST 0.051 0.037 new Foo() 0.136 0.123 $x = TEST 0.029 0.016 $x = $_GET 0.048 0.034 $x = $GLOBALS['v'] 0.051 0.037 $x = $hash['v'] 0.063 0.050 $x = $str[0] 0.050 0.037 $x = $a ?: null 0.046 0.032 $x = $f ?: tmp 0.047 0.033 $x = $f ? $f : $a 0.038 0.024 $x = $f ? $f : tmp 0.039 0.026 ------------------------ Total 1.651
Output for 8.2.11
empty_loop 0.024 func() 0.062 0.038 undef_func() 0.063 0.039 int_func() 0.043 0.019 $x = self::$x 0.085 0.060 self::$x = 0 0.076 0.052 isset(self::$x) 0.081 0.057 empty(self::$x) 0.080 0.055 $x = Foo::$x 0.074 0.050 Foo::$x = 0 0.054 0.030 isset(Foo::$x) 0.068 0.044 empty(Foo::$x) 0.065 0.041 self::f() 0.074 0.050 Foo::f() 0.068 0.044 $x = $this->x 0.065 0.040 $this->x = 0 0.060 0.036 $this->x += 2 0.065 0.041 ++$this->x 0.065 0.040 --$this->x 0.064 0.040 $this->x++ 0.064 0.040 $this->x-- 0.065 0.041 isset($this->x) 0.081 0.057 empty($this->x) 0.081 0.057 $this->f() 0.066 0.042 $x = Foo::TEST 0.136 0.112 new Foo() 0.227 0.203
Process exited with code 137.
Output for 8.2.10
empty_loop 0.016 func() 0.050 0.034 undef_func() 0.057 0.042 int_func() 0.026 0.010 $x = self::$x 0.077 0.062 self::$x = 0 0.058 0.042 isset(self::$x) 0.063 0.047 empty(self::$x) 0.068 0.052 $x = Foo::$x 0.059 0.044 Foo::$x = 0 0.030 0.014 isset(Foo::$x) 0.036 0.021 empty(Foo::$x) 0.039 0.024 self::f() 0.074 0.059 Foo::f() 0.067 0.051 $x = $this->x 0.035 0.019 $this->x = 0 0.031 0.015 $this->x += 2 0.055 0.040 ++$this->x 0.048 0.032 --$this->x 0.048 0.033 $this->x++ 0.048 0.033 $this->x-- 0.048 0.033 isset($this->x) 0.051 0.035 empty($this->x) 0.058 0.043 $this->f() 0.063 0.047 $x = Foo::TEST 0.056 0.041 new Foo() 0.222 0.207 $x = TEST 0.028 0.013 $x = $_GET 0.055 0.039 $x = $GLOBALS['v'] 0.049 0.034 $x = $hash['v'] 0.062 0.046 $x = $str[0] 0.045 0.029 $x = $a ?: null 0.044 0.029 $x = $f ?: tmp 0.043 0.027 $x = $f ? $f : $a 0.048 0.032 $x = $f ? $f : tmp 0.049 0.034 ------------------------ Total 1.906
Output for 8.2.9
empty_loop 0.015 func() 0.051 0.036 undef_func() 0.057 0.042 int_func() 0.024 0.009 $x = self::$x 0.065 0.049 self::$x = 0 0.058 0.043 isset(self::$x) 0.063 0.047 empty(self::$x) 0.067 0.051 $x = Foo::$x 0.039 0.024 Foo::$x = 0 0.030 0.014 isset(Foo::$x) 0.036 0.020 empty(Foo::$x) 0.040 0.024 self::f() 0.073 0.058 Foo::f() 0.063 0.048 $x = $this->x 0.034 0.019 $this->x = 0 0.031 0.016 $this->x += 2 0.055 0.040 ++$this->x 0.048 0.033 --$this->x 0.049 0.033 $this->x++ 0.048 0.033 $this->x-- 0.049 0.033 isset($this->x) 0.050 0.035 empty($this->x) 0.063 0.047 $this->f() 0.063 0.047 $x = Foo::TEST 0.066 0.051 new Foo() 0.198 0.183 $x = TEST 0.028 0.013 $x = $_GET 0.055 0.040 $x = $GLOBALS['v'] 0.056 0.041 $x = $hash['v'] 0.062 0.046 $x = $str[0] 0.045 0.030 $x = $a ?: null 0.044 0.029 $x = $f ?: tmp 0.043 0.028 $x = $f ? $f : $a 0.048 0.033 $x = $f ? $f : tmp 0.049 0.034 ------------------------ Total 1.867
Output for 8.2.8
empty_loop 0.015 func() 0.051 0.036 undef_func() 0.057 0.042 int_func() 0.024 0.009 $x = self::$x 0.065 0.049 self::$x = 0 0.060 0.044 isset(self::$x) 0.062 0.046 empty(self::$x) 0.066 0.051 $x = Foo::$x 0.038 0.023 Foo::$x = 0 0.029 0.014 isset(Foo::$x) 0.037 0.021 empty(Foo::$x) 0.041 0.026 self::f() 0.073 0.057 Foo::f() 0.063 0.048 $x = $this->x 0.034 0.019 $this->x = 0 0.037 0.021 $this->x += 2 0.055 0.039 ++$this->x 0.048 0.033 --$this->x 0.048 0.032 $this->x++ 0.048 0.032 $this->x-- 0.048 0.033 isset($this->x) 0.050 0.035 empty($this->x) 0.056 0.040 $this->f() 0.062 0.046 $x = Foo::TEST 0.056 0.040 new Foo() 0.193 0.177 $x = TEST 0.028 0.012 $x = $_GET 0.055 0.039 $x = $GLOBALS['v'] 0.049 0.034 $x = $hash['v'] 0.063 0.047 $x = $str[0] 0.045 0.029 $x = $a ?: null 0.044 0.029 $x = $f ?: tmp 0.043 0.028 $x = $f ? $f : $a 0.048 0.032 $x = $f ? $f : tmp 0.049 0.033 ------------------------ Total 1.839
Output for 8.2.7
empty_loop 0.015 func() 0.051 0.036 undef_func() 0.057 0.042 int_func() 0.024 0.009 $x = self::$x 0.064 0.048 self::$x = 0 0.058 0.042 isset(self::$x) 0.073 0.058 empty(self::$x) 0.067 0.051 $x = Foo::$x 0.040 0.024 Foo::$x = 0 0.029 0.014 isset(Foo::$x) 0.037 0.021 empty(Foo::$x) 0.042 0.026 self::f() 0.073 0.057 Foo::f() 0.063 0.048 $x = $this->x 0.035 0.020 $this->x = 0 0.031 0.015 $this->x += 2 0.056 0.041 ++$this->x 0.048 0.033 --$this->x 0.049 0.033 $this->x++ 0.049 0.033 $this->x-- 0.049 0.033 isset($this->x) 0.050 0.035 empty($this->x) 0.056 0.040 $this->f() 0.062 0.047 $x = Foo::TEST 0.057 0.042 new Foo() 0.205 0.189 $x = TEST 0.028 0.013 $x = $_GET 0.056 0.040 $x = $GLOBALS['v'] 0.049 0.034 $x = $hash['v'] 0.062 0.046 $x = $str[0] 0.045 0.030 $x = $a ?: null 0.045 0.029 $x = $f ?: tmp 0.043 0.028 $x = $f ? $f : $a 0.048 0.033 $x = $f ? $f : tmp 0.049 0.034 ------------------------ Total 1.866
Output for 8.2.6
empty_loop 0.015 func() 0.049 0.034 undef_func() 0.057 0.042 int_func() 0.026 0.011 $x = self::$x 0.072 0.056 self::$x = 0 0.058 0.042 isset(self::$x) 0.074 0.058 empty(self::$x) 0.076 0.060 $x = Foo::$x 0.038 0.023 Foo::$x = 0 0.029 0.014 isset(Foo::$x) 0.041 0.026 empty(Foo::$x) 0.041 0.026 self::f() 0.073 0.058 Foo::f() 0.063 0.048 $x = $this->x 0.034 0.019 $this->x = 0 0.031 0.015 $this->x += 2 0.055 0.039 ++$this->x 0.048 0.033 --$this->x 0.048 0.033 $this->x++ 0.048 0.032 $this->x-- 0.048 0.033 isset($this->x) 0.050 0.035 empty($this->x) 0.055 0.040 $this->f() 0.062 0.047 $x = Foo::TEST 0.059 0.044 new Foo() 0.256 0.240 $x = TEST 0.030 0.015 $x = $_GET 0.067 0.051 $x = $GLOBALS['v'] 0.064 0.048 $x = $hash['v'] 0.076 0.061 $x = $str[0] 0.060 0.044 $x = $a ?: null 0.050 0.034 $x = $f ?: tmp 0.045 0.030 $x = $f ? $f : $a 0.049 0.033
Process exited with code 137.
Output for 8.2.5
empty_loop 0.015 func() 0.051 0.036 undef_func() 0.057 0.042 int_func() 0.024 0.009 $x = self::$x 0.063 0.048 self::$x = 0 0.058 0.043 isset(self::$x) 0.061 0.045 empty(self::$x) 0.066 0.051 $x = Foo::$x 0.042 0.026 Foo::$x = 0 0.030 0.014 isset(Foo::$x) 0.037 0.021 empty(Foo::$x) 0.041 0.026 self::f() 0.073 0.057 Foo::f() 0.063 0.047 $x = $this->x 0.034 0.019 $this->x = 0 0.031 0.016 $this->x += 2 0.055 0.039 ++$this->x 0.048 0.032 --$this->x 0.049 0.033 $this->x++ 0.048 0.033 $this->x-- 0.048 0.033 isset($this->x) 0.050 0.035 empty($this->x) 0.057 0.041 $this->f() 0.062 0.046 $x = Foo::TEST 0.056 0.040 new Foo() 0.211 0.196 $x = TEST 0.028 0.012 $x = $_GET 0.055 0.039 $x = $GLOBALS['v'] 0.049 0.034 $x = $hash['v'] 0.061 0.046 $x = $str[0] 0.045 0.029 $x = $a ?: null 0.044 0.029 $x = $f ?: tmp 0.043 0.027 $x = $f ? $f : $a 0.048 0.032 $x = $f ? $f : tmp 0.049 0.034 ------------------------ Total 1.851
Output for 8.2.4
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.058 0.041 int_func() 0.031 0.014 $x = self::$x 0.066 0.049 self::$x = 0 0.062 0.045 isset(self::$x) 0.064 0.047 empty(self::$x) 0.068 0.051 $x = Foo::$x 0.042 0.025 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.042 0.025 self::f() 0.076 0.059 Foo::f() 0.064 0.047 $x = $this->x 0.034 0.017 $this->x = 0 0.031 0.014 $this->x += 2 0.056 0.039 ++$this->x 0.048 0.031 --$this->x 0.049 0.032 $this->x++ 0.048 0.031 $this->x-- 0.049 0.032 isset($this->x) 0.051 0.034 empty($this->x) 0.057 0.040 $this->f() 0.064 0.047 $x = Foo::TEST 0.057 0.040 new Foo() 0.180 0.163 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.049 0.032 $x = $hash['v'] 0.062 0.045 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.856
Output for 8.2.3
empty_loop 0.018 func() 0.054 0.036 undef_func() 0.065 0.047 int_func() 0.030 0.011 $x = self::$x 0.077 0.058 self::$x = 0 0.064 0.046 isset(self::$x) 0.082 0.063 empty(self::$x) 0.083 0.065 $x = Foo::$x 0.050 0.032 Foo::$x = 0 0.032 0.014 isset(Foo::$x) 0.052 0.034 empty(Foo::$x) 0.054 0.036 self::f() 0.080 0.062 Foo::f() 0.066 0.047 $x = $this->x 0.041 0.022 $this->x = 0 0.031 0.013 $this->x += 2 0.061 0.043 ++$this->x 0.049 0.031 --$this->x 0.056 0.037 $this->x++ 0.063 0.045 $this->x-- 0.067 0.048 isset($this->x) 0.069 0.050 empty($this->x) 0.076 0.058 $this->f() 0.075 0.056 $x = Foo::TEST 0.069 0.050 new Foo() 0.268 0.249 $x = TEST 0.036 0.018 $x = $_GET 0.076 0.057 $x = $GLOBALS['v'] 0.061 0.043 $x = $hash['v'] 0.086 0.068
Process exited with code 137.
Output for 8.2.2
empty_loop 0.015 func() 0.050 0.034 undef_func() 0.058 0.043 int_func() 0.026 0.011 $x = self::$x 0.070 0.055 self::$x = 0 0.059 0.043 isset(self::$x) 0.066 0.051 empty(self::$x) 0.067 0.051 $x = Foo::$x 0.040 0.024 Foo::$x = 0 0.030 0.014 isset(Foo::$x) 0.038 0.022 empty(Foo::$x) 0.046 0.031 self::f() 0.074 0.058 Foo::f() 0.064 0.048 $x = $this->x 0.036 0.020 $this->x = 0 0.034 0.018 $this->x += 2 0.055 0.040 ++$this->x 0.048 0.033 --$this->x 0.050 0.035 $this->x++ 0.048 0.033 $this->x-- 0.048 0.032 isset($this->x) 0.052 0.036 empty($this->x) 0.056 0.040 $this->f() 0.065 0.049 $x = Foo::TEST 0.058 0.043 new Foo() 0.217 0.202 $x = TEST 0.028 0.013 $x = $_GET 0.056 0.041 $x = $GLOBALS['v'] 0.050 0.034 $x = $hash['v'] 0.062 0.046 $x = $str[0] 0.045 0.030 $x = $a ?: null 0.045 0.030 $x = $f ?: tmp 0.044 0.028 $x = $f ? $f : $a 0.048 0.032 $x = $f ? $f : tmp 0.049 0.034 ------------------------ Total 1.894
Output for 8.2.1
empty_loop 0.015 func() 0.050 0.034 undef_func() 0.058 0.042 int_func() 0.038 0.022 $x = self::$x 0.064 0.048 self::$x = 0 0.058 0.043 isset(self::$x) 0.071 0.056 empty(self::$x) 0.075 0.060 $x = Foo::$x 0.038 0.023 Foo::$x = 0 0.033 0.018 isset(Foo::$x) 0.037 0.022 empty(Foo::$x) 0.042 0.026 self::f() 0.076 0.061 Foo::f() 0.065 0.050 $x = $this->x 0.034 0.019 $this->x = 0 0.031 0.016 $this->x += 2 0.055 0.040 ++$this->x 0.049 0.034 --$this->x 0.049 0.033 $this->x++ 0.048 0.033 $this->x-- 0.048 0.033 isset($this->x) 0.050 0.035 empty($this->x) 0.055 0.039 $this->f() 0.062 0.046 $x = Foo::TEST 0.056 0.040 new Foo() 0.215 0.199 $x = TEST 0.028 0.012 $x = $_GET 0.055 0.040 $x = $GLOBALS['v'] 0.049 0.034 $x = $hash['v'] 0.061 0.046 $x = $str[0] 0.045 0.029 $x = $a ?: null 0.044 0.029 $x = $f ?: tmp 0.043 0.027 $x = $f ? $f : $a 0.048 0.032 $x = $f ? $f : tmp 0.049 0.034 ------------------------ Total 1.892
Output for 8.2.0
empty_loop 0.015 func() 0.049 0.034 undef_func() 0.057 0.042 int_func() 0.027 0.012 $x = self::$x 0.065 0.049 self::$x = 0 0.060 0.045 isset(self::$x) 0.077 0.062 empty(self::$x) 0.088 0.073 $x = Foo::$x 0.049 0.033 Foo::$x = 0 0.037 0.022 isset(Foo::$x) 0.054 0.039 empty(Foo::$x) 0.055 0.040 self::f() 0.081 0.066 Foo::f() 0.076 0.060 $x = $this->x 0.037 0.021 $this->x = 0 0.036 0.021 $this->x += 2 0.068 0.053 ++$this->x 0.055 0.039 --$this->x 0.053 0.038 $this->x++ 0.053 0.038 $this->x-- 0.057 0.042 isset($this->x) 0.058 0.042 empty($this->x) 0.062 0.047 $this->f() 0.069 0.053 $x = Foo::TEST 0.067 0.052 new Foo() 0.255 0.240 $x = TEST 0.037 0.021 $x = $_GET 0.081 0.066 $x = $GLOBALS['v'] 0.083 0.068 $x = $hash['v'] 0.083 0.068 $x = $str[0] 0.053 0.038
Process exited with code 137.
Output for 8.1.28
empty_loop 0.029 func() 0.080 0.052 undef_func() 0.067 0.038 int_func() 0.046 0.017 $x = self::$x 0.107 0.078 self::$x = 0 0.071 0.043 isset(self::$x) 0.102 0.074 empty(self::$x) 0.110 0.082 $x = Foo::$x 0.057 0.029 Foo::$x = 0 0.051 0.022 isset(Foo::$x) 0.066 0.037 empty(Foo::$x) 0.071 0.043 self::f() 0.093 0.065 Foo::f() 0.089 0.060 $x = $this->x 0.056 0.027 $this->x = 0 0.041 0.013 $this->x += 2 0.070 0.041 ++$this->x 0.066 0.037 --$this->x 0.066 0.037 $this->x++ 0.072 0.044 $this->x-- 0.069 0.040 isset($this->x) 0.087 0.059 empty($this->x) 0.091 0.063 $this->f() 0.093 0.064 $x = Foo::TEST 0.091 0.062
Process exited with code 137.
Output for 8.1.27
empty_loop 0.013 func() 0.035 0.022 undef_func() 0.035 0.022 int_func() 0.037 0.024 $x = self::$x 0.060 0.047 self::$x = 0 0.044 0.031 isset(self::$x) 0.060 0.047 empty(self::$x) 0.060 0.047 $x = Foo::$x 0.042 0.029 Foo::$x = 0 0.029 0.016 isset(Foo::$x) 0.041 0.028 empty(Foo::$x) 0.045 0.032 self::f() 0.051 0.038 Foo::f() 0.044 0.031 $x = $this->x 0.029 0.016 $this->x = 0 0.022 0.009 $this->x += 2 0.044 0.031 ++$this->x 0.037 0.024 --$this->x 0.037 0.024 $this->x++ 0.038 0.025 $this->x-- 0.043 0.030 isset($this->x) 0.061 0.048 empty($this->x) 0.061 0.048 $this->f() 0.040 0.027 $x = Foo::TEST 0.052 0.039 new Foo() 0.140 0.127 $x = TEST 0.027 0.014 $x = $_GET 0.048 0.035 $x = $GLOBALS['v'] 0.047 0.034 $x = $hash['v'] 0.066 0.053 $x = $str[0] 0.052 0.039 $x = $a ?: null 0.041 0.028 $x = $f ?: tmp 0.052 0.040 $x = $f ? $f : $a 0.034 0.021 $x = $f ? $f : tmp 0.041 0.028 ------------------------ Total 1.609
Output for 8.1.26
empty_loop 0.013 func() 0.037 0.024 undef_func() 0.036 0.023 int_func() 0.029 0.016 $x = self::$x 0.063 0.050 self::$x = 0 0.050 0.037 isset(self::$x) 0.054 0.041 empty(self::$x) 0.052 0.039 $x = Foo::$x 0.034 0.021 Foo::$x = 0 0.028 0.015 isset(Foo::$x) 0.041 0.028 empty(Foo::$x) 0.036 0.023 self::f() 0.052 0.039 Foo::f() 0.044 0.031 $x = $this->x 0.031 0.018 $this->x = 0 0.024 0.011 $this->x += 2 0.048 0.035 ++$this->x 0.039 0.026 --$this->x 0.041 0.028 $this->x++ 0.040 0.027 $this->x-- 0.038 0.025 isset($this->x) 0.042 0.029 empty($this->x) 0.053 0.040 $this->f() 0.041 0.028 $x = Foo::TEST 0.044 0.031 new Foo() 0.122 0.109 $x = TEST 0.029 0.016 $x = $_GET 0.044 0.031 $x = $GLOBALS['v'] 0.062 0.049 $x = $hash['v'] 0.054 0.041 $x = $str[0] 0.044 0.031 $x = $a ?: null 0.033 0.020 $x = $f ?: tmp 0.044 0.031 $x = $f ? $f : $a 0.034 0.021 $x = $f ? $f : tmp 0.037 0.024 ------------------------ Total 1.516
Output for 8.1.25
empty_loop 0.013 func() 0.033 0.020 undef_func() 0.036 0.023 int_func() 0.028 0.014 $x = self::$x 0.055 0.042 self::$x = 0 0.039 0.026 isset(self::$x) 0.055 0.042 empty(self::$x) 0.057 0.044 $x = Foo::$x 0.041 0.028 Foo::$x = 0 0.028 0.015 isset(Foo::$x) 0.037 0.024 empty(Foo::$x) 0.038 0.025 self::f() 0.049 0.036 Foo::f() 0.042 0.029 $x = $this->x 0.027 0.014 $this->x = 0 0.022 0.009 $this->x += 2 0.042 0.029 ++$this->x 0.038 0.025 --$this->x 0.038 0.025 $this->x++ 0.039 0.026 $this->x-- 0.039 0.025 isset($this->x) 0.044 0.031 empty($this->x) 0.051 0.038 $this->f() 0.042 0.029 $x = Foo::TEST 0.044 0.031 new Foo() 0.122 0.109 $x = TEST 0.029 0.016 $x = $_GET 0.044 0.031 $x = $GLOBALS['v'] 0.041 0.028 $x = $hash['v'] 0.058 0.045 $x = $str[0] 0.048 0.035 $x = $a ?: null 0.038 0.025 $x = $f ?: tmp 0.034 0.021 $x = $f ? $f : $a 0.034 0.021 $x = $f ? $f : tmp 0.036 0.023 ------------------------ Total 1.461
Output for 8.1.24
empty_loop 0.024 func() 0.062 0.038 undef_func() 0.064 0.040 int_func() 0.043 0.019 $x = self::$x 0.080 0.056 self::$x = 0 0.076 0.052 isset(self::$x) 0.077 0.053 empty(self::$x) 0.078 0.054 $x = Foo::$x 0.074 0.049 Foo::$x = 0 0.055 0.031 isset(Foo::$x) 0.068 0.044 empty(Foo::$x) 0.065 0.041 self::f() 0.076 0.052 Foo::f() 0.076 0.052 $x = $this->x 0.064 0.040 $this->x = 0 0.059 0.035 $this->x += 2 0.064 0.040 ++$this->x 0.065 0.041 --$this->x 0.065 0.041 $this->x++ 0.065 0.041 $this->x-- 0.065 0.041 isset($this->x) 0.080 0.056 empty($this->x) 0.079 0.055 $this->f() 0.067 0.043 $x = Foo::TEST 0.134 0.110 new Foo() 0.224 0.200
Process exited with code 137.
Output for 8.1.23
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.056 0.039 int_func() 0.024 0.007 $x = self::$x 0.064 0.047 self::$x = 0 0.058 0.041 isset(self::$x) 0.063 0.046 empty(self::$x) 0.071 0.054 $x = Foo::$x 0.039 0.022 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.036 0.019 empty(Foo::$x) 0.040 0.023 self::f() 0.073 0.056 Foo::f() 0.062 0.046 $x = $this->x 0.035 0.018 $this->x = 0 0.033 0.016 $this->x += 2 0.058 0.041 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.050 0.033 empty($this->x) 0.060 0.043 $this->f() 0.061 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.158 0.142 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.052 0.035 $x = $hash['v'] 0.067 0.050 $x = $str[0] 0.049 0.032 $x = $a ?: null 0.048 0.031 $x = $f ?: tmp 0.044 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.827
Output for 8.1.22
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.056 0.039 int_func() 0.028 0.011 $x = self::$x 0.067 0.050 self::$x = 0 0.058 0.041 isset(self::$x) 0.072 0.055 empty(self::$x) 0.073 0.056 $x = Foo::$x 0.041 0.024 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.040 0.023 self::f() 0.072 0.055 Foo::f() 0.062 0.045 $x = $this->x 0.034 0.017 $this->x = 0 0.031 0.014 $this->x += 2 0.056 0.039 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.050 0.033 empty($this->x) 0.067 0.050 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.194 0.177 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.049 0.032 $x = $hash['v'] 0.061 0.044 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.049 0.032 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.869
Output for 8.1.21
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.055 0.038 int_func() 0.028 0.011 $x = self::$x 0.068 0.050 self::$x = 0 0.059 0.042 isset(self::$x) 0.070 0.053 empty(self::$x) 0.070 0.053 $x = Foo::$x 0.044 0.027 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.038 0.021 empty(Foo::$x) 0.041 0.024 self::f() 0.071 0.054 Foo::f() 0.062 0.045 $x = $this->x 0.034 0.017 $this->x = 0 0.031 0.014 $this->x += 2 0.055 0.038 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.055 0.038 $this->f() 0.061 0.044 $x = Foo::TEST 0.055 0.038 new Foo() 0.161 0.143 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.049 0.032 $x = $hash['v'] 0.061 0.044 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.046 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.047 0.030 $x = $f ? $f : tmp 0.048 0.031 ------------------------ Total 1.823
Output for 8.1.20
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.060 0.043 int_func() 0.033 0.016 $x = self::$x 0.078 0.061 self::$x = 0 0.059 0.042 isset(self::$x) 0.075 0.058 empty(self::$x) 0.080 0.063 $x = Foo::$x 0.039 0.022 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.040 0.023 empty(Foo::$x) 0.052 0.035 self::f() 0.092 0.075 Foo::f() 0.082 0.065 $x = $this->x 0.039 0.022 $this->x = 0 0.036 0.019 $this->x += 2 0.074 0.057 ++$this->x 0.058 0.041 --$this->x 0.060 0.043 $this->x++ 0.060 0.043 $this->x-- 0.055 0.038 isset($this->x) 0.058 0.041 empty($this->x) 0.074 0.056 $this->f() 0.069 0.052 $x = Foo::TEST 0.071 0.054 new Foo() 0.245 0.228 $x = TEST 0.049 0.032 $x = $_GET 0.085 0.068 $x = $GLOBALS['v'] 0.061 0.044 $x = $hash['v'] 0.080 0.063
Process exited with code 137.
Output for 8.1.19
empty_loop 0.017 func() 0.054 0.037 undef_func() 0.056 0.039 int_func() 0.025 0.008 $x = self::$x 0.065 0.048 self::$x = 0 0.060 0.042 isset(self::$x) 0.063 0.045 empty(self::$x) 0.067 0.050 $x = Foo::$x 0.040 0.022 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.043 0.026 self::f() 0.073 0.055 Foo::f() 0.063 0.046 $x = $this->x 0.035 0.017 $this->x = 0 0.031 0.014 $this->x += 2 0.058 0.041 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.058 0.040 $this->f() 0.062 0.045 $x = Foo::TEST 0.056 0.038 new Foo() 0.202 0.185 $x = TEST 0.028 0.011 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.050 0.033 $x = $hash['v'] 0.062 0.045 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.030 $x = $f ? $f : tmp 0.049 0.031 ------------------------ Total 1.863
Output for 8.1.18
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.055 0.038 int_func() 0.030 0.013 $x = self::$x 0.064 0.047 self::$x = 0 0.059 0.042 isset(self::$x) 0.061 0.045 empty(self::$x) 0.068 0.051 $x = Foo::$x 0.039 0.022 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.036 0.019 empty(Foo::$x) 0.039 0.022 self::f() 0.072 0.055 Foo::f() 0.063 0.046 $x = $this->x 0.034 0.017 $this->x = 0 0.031 0.015 $this->x += 2 0.056 0.039 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.050 0.033 empty($this->x) 0.055 0.038 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.213 0.196 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.049 0.033 $x = $hash['v'] 0.063 0.046 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.857
Output for 8.1.17
empty_loop 0.017 func() 0.053 0.036 undef_func() 0.056 0.039 int_func() 0.025 0.007 $x = self::$x 0.065 0.047 self::$x = 0 0.065 0.048 isset(self::$x) 0.064 0.047 empty(self::$x) 0.068 0.051 $x = Foo::$x 0.043 0.026 Foo::$x = 0 0.031 0.014 isset(Foo::$x) 0.041 0.023 empty(Foo::$x) 0.047 0.030 self::f() 0.073 0.055 Foo::f() 0.063 0.045 $x = $this->x 0.035 0.017 $this->x = 0 0.032 0.014 $this->x += 2 0.056 0.039 ++$this->x 0.049 0.031 --$this->x 0.049 0.032 $this->x++ 0.053 0.035 $this->x-- 0.052 0.035 isset($this->x) 0.055 0.037 empty($this->x) 0.058 0.040 $this->f() 0.062 0.045 $x = Foo::TEST 0.056 0.039 new Foo() 0.173 0.155 $x = TEST 0.029 0.012 $x = $_GET 0.056 0.038 $x = $GLOBALS['v'] 0.049 0.032 $x = $hash['v'] 0.066 0.049 $x = $str[0] 0.046 0.028 $x = $a ?: null 0.045 0.027 $x = $f ?: tmp 0.044 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.873
Output for 8.1.16
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.055 0.038 int_func() 0.024 0.008 $x = self::$x 0.066 0.049 self::$x = 0 0.058 0.041 isset(self::$x) 0.071 0.054 empty(self::$x) 0.070 0.053 $x = Foo::$x 0.040 0.023 Foo::$x = 0 0.029 0.013 isset(Foo::$x) 0.036 0.019 empty(Foo::$x) 0.041 0.024 self::f() 0.073 0.056 Foo::f() 0.062 0.045 $x = $this->x 0.034 0.017 $this->x = 0 0.031 0.015 $this->x += 2 0.057 0.040 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.055 0.038 $this->f() 0.061 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.200 0.183 $x = TEST 0.029 0.012 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.049 0.032 $x = $hash['v'] 0.065 0.048 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.048 0.032 ------------------------ Total 1.859
Output for 8.1.15
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.055 0.039 int_func() 0.029 0.012 $x = self::$x 0.064 0.047 self::$x = 0 0.059 0.042 isset(self::$x) 0.063 0.046 empty(self::$x) 0.068 0.051 $x = Foo::$x 0.042 0.025 Foo::$x = 0 0.031 0.014 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.040 0.023 self::f() 0.072 0.056 Foo::f() 0.063 0.046 $x = $this->x 0.035 0.018 $this->x = 0 0.031 0.015 $this->x += 2 0.056 0.039 ++$this->x 0.048 0.031 --$this->x 0.048 0.032 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.064 0.047 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.039 new Foo() 0.200 0.183 $x = TEST 0.028 0.011 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.052 0.035 $x = $hash['v'] 0.062 0.045 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.044 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.868
Output for 8.1.14
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.056 0.039 int_func() 0.024 0.008 $x = self::$x 0.078 0.061 self::$x = 0 0.063 0.046 isset(self::$x) 0.066 0.049 empty(self::$x) 0.068 0.051 $x = Foo::$x 0.041 0.024 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.042 0.025 empty(Foo::$x) 0.046 0.030 self::f() 0.073 0.056 Foo::f() 0.064 0.047 $x = $this->x 0.035 0.018 $this->x = 0 0.031 0.015 $this->x += 2 0.057 0.041 ++$this->x 0.048 0.031 --$this->x 0.049 0.032 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.039 $this->f() 0.061 0.044 $x = Foo::TEST 0.056 0.039 new Foo() 0.212 0.195 $x = TEST 0.029 0.012 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.049 0.033 $x = $hash['v'] 0.061 0.045 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.044 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.050 0.033 ------------------------ Total 1.898
Output for 8.1.13
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.055 0.038 int_func() 0.028 0.011 $x = self::$x 0.077 0.060 self::$x = 0 0.060 0.043 isset(self::$x) 0.062 0.045 empty(self::$x) 0.066 0.049 $x = Foo::$x 0.055 0.038 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.036 0.019 empty(Foo::$x) 0.046 0.030 self::f() 0.071 0.054 Foo::f() 0.067 0.050 $x = $this->x 0.039 0.022 $this->x = 0 0.032 0.015 $this->x += 2 0.055 0.038 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.050 0.033 empty($this->x) 0.055 0.038 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.183 0.166 $x = TEST 0.028 0.012 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.049 0.032 $x = $hash['v'] 0.061 0.044 $x = $str[0] 0.047 0.030 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.051 0.035 ------------------------ Total 1.873
Output for 8.1.12
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.056 0.039 int_func() 0.028 0.011 $x = self::$x 0.066 0.049 self::$x = 0 0.075 0.058 isset(self::$x) 0.074 0.057 empty(self::$x) 0.069 0.052 $x = Foo::$x 0.042 0.025 Foo::$x = 0 0.031 0.014 isset(Foo::$x) 0.040 0.023 empty(Foo::$x) 0.052 0.035 self::f() 0.073 0.056 Foo::f() 0.063 0.046 $x = $this->x 0.035 0.018 $this->x = 0 0.032 0.015 $this->x += 2 0.056 0.039 ++$this->x 0.049 0.033 --$this->x 0.049 0.032 $this->x++ 0.049 0.032 $this->x-- 0.048 0.031 isset($this->x) 0.052 0.035 empty($this->x) 0.056 0.039 $this->f() 0.062 0.045 $x = Foo::TEST 0.057 0.040 new Foo() 0.195 0.178 $x = TEST 0.028 0.012 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.050 0.033 $x = $hash['v'] 0.064 0.047 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.904
Output for 8.1.11
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.055 0.038 int_func() 0.028 0.011 $x = self::$x 0.066 0.049 self::$x = 0 0.058 0.041 isset(self::$x) 0.061 0.044 empty(self::$x) 0.066 0.049 $x = Foo::$x 0.043 0.026 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.040 0.023 empty(Foo::$x) 0.040 0.023 self::f() 0.072 0.055 Foo::f() 0.065 0.048 $x = $this->x 0.035 0.018 $this->x = 0 0.032 0.015 $this->x += 2 0.057 0.040 ++$this->x 0.049 0.032 --$this->x 0.048 0.031 $this->x++ 0.049 0.032 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.039 $this->f() 0.062 0.045 $x = Foo::TEST 0.056 0.040 new Foo() 0.198 0.181 $x = TEST 0.029 0.012 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.050 0.033 $x = $hash['v'] 0.062 0.045 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.044 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.858
Output for 8.1.10
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.055 0.039 int_func() 0.026 0.009 $x = self::$x 0.064 0.047 self::$x = 0 0.059 0.042 isset(self::$x) 0.061 0.044 empty(self::$x) 0.066 0.049 $x = Foo::$x 0.039 0.022 Foo::$x = 0 0.029 0.012 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.043 0.026 self::f() 0.071 0.055 Foo::f() 0.062 0.046 $x = $this->x 0.036 0.019 $this->x = 0 0.032 0.015 $this->x += 2 0.059 0.042 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.055 0.038 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.199 0.182 $x = TEST 0.028 0.012 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.050 0.033 $x = $hash['v'] 0.062 0.045 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.044 0.028 $x = $f ?: tmp 0.043 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.846
Output for 8.1.9
empty_loop 0.018 func() 0.063 0.044 undef_func() 0.073 0.054 int_func() 0.036 0.018 $x = self::$x 0.098 0.080 self::$x = 0 0.078 0.059 isset(self::$x) 0.096 0.077 empty(self::$x) 0.101 0.083 $x = Foo::$x 0.052 0.034 Foo::$x = 0 0.035 0.017 isset(Foo::$x) 0.056 0.037 empty(Foo::$x) 0.058 0.039 self::f() 0.087 0.068 Foo::f() 0.076 0.057 $x = $this->x 0.036 0.018 $this->x = 0 0.035 0.017 $this->x += 2 0.065 0.046 ++$this->x 0.055 0.036 --$this->x 0.058 0.039 $this->x++ 0.059 0.040 $this->x-- 0.056 0.037 isset($this->x) 0.062 0.044 empty($this->x) 0.079 0.060 $this->f() 0.071 0.052 $x = Foo::TEST 0.067 0.049 new Foo() 0.232 0.214 $x = TEST 0.035 0.017 $x = $_GET 0.067 0.048 $x = $GLOBALS['v'] 0.062 0.044
Process exited with code 137.
Output for 8.1.8
empty_loop 0.017 func() 0.052 0.035 undef_func() 0.056 0.039 int_func() 0.025 0.008 $x = self::$x 0.076 0.059 self::$x = 0 0.059 0.042 isset(self::$x) 0.078 0.061 empty(self::$x) 0.080 0.063 $x = Foo::$x 0.042 0.026 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.042 0.025 self::f() 0.072 0.055 Foo::f() 0.064 0.047 $x = $this->x 0.035 0.018 $this->x = 0 0.032 0.015 $this->x += 2 0.057 0.040 ++$this->x 0.049 0.032 --$this->x 0.048 0.032 $this->x++ 0.049 0.032 $this->x-- 0.048 0.032 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.039 $this->f() 0.062 0.046 $x = Foo::TEST 0.056 0.039 new Foo() 0.180 0.163 $x = TEST 0.028 0.011 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.050 0.033 $x = $hash['v'] 0.061 0.044 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.044 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.880
Output for 8.1.7
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.056 0.039 int_func() 0.029 0.012 $x = self::$x 0.076 0.060 self::$x = 0 0.059 0.042 isset(self::$x) 0.062 0.045 empty(self::$x) 0.070 0.053 $x = Foo::$x 0.043 0.026 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.042 0.025 self::f() 0.074 0.057 Foo::f() 0.062 0.045 $x = $this->x 0.034 0.017 $this->x = 0 0.033 0.016 $this->x += 2 0.058 0.041 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.050 0.033 empty($this->x) 0.055 0.038 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.208 0.191 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.049 0.032 $x = $hash['v'] 0.067 0.050 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.047 0.030 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.886
Output for 8.1.6
empty_loop 0.028 func() 0.063 0.035 undef_func() 0.067 0.038 int_func() 0.045 0.017 $x = self::$x 0.087 0.059 self::$x = 0 0.079 0.051 isset(self::$x) 0.087 0.059 empty(self::$x) 0.087 0.059 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.041 empty(Foo::$x) 0.072 0.043 self::f() 0.080 0.052 Foo::f() 0.072 0.044 $x = $this->x 0.065 0.037 $this->x = 0 0.057 0.029 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.084 0.056 $this->f() 0.077 0.048 $x = Foo::TEST 0.124 0.096 new Foo() 0.225 0.197
Process exited with code 137.
Output for 8.1.5
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.067 0.040 int_func() 0.044 0.017 $x = self::$x 0.088 0.060 self::$x = 0 0.079 0.051 isset(self::$x) 0.084 0.056 empty(self::$x) 0.092 0.064 $x = Foo::$x 0.075 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.043 empty(Foo::$x) 0.072 0.044 self::f() 0.083 0.055 Foo::f() 0.072 0.044 $x = $this->x 0.066 0.038 $this->x = 0 0.058 0.030 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.035 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.074 0.046 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.1.4
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.067 0.039 int_func() 0.044 0.017 $x = self::$x 0.087 0.059 self::$x = 0 0.079 0.052 isset(self::$x) 0.084 0.056 empty(self::$x) 0.087 0.059 $x = Foo::$x 0.075 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.082 0.054 Foo::f() 0.072 0.044 $x = $this->x 0.065 0.038 $this->x = 0 0.057 0.029 $this->x += 2 0.065 0.038 ++$this->x 0.062 0.035 --$this->x 0.064 0.036 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.054 empty($this->x) 0.083 0.055 $this->f() 0.074 0.046 $x = Foo::TEST 0.124 0.097 new Foo() 0.227 0.199
Process exited with code 137.
Output for 8.1.3
empty_loop 0.028 func() 0.065 0.037 undef_func() 0.066 0.038 int_func() 0.045 0.017 $x = self::$x 0.088 0.061 self::$x = 0 0.079 0.052 isset(self::$x) 0.087 0.060 empty(self::$x) 0.089 0.062 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.076 0.049 self::f() 0.081 0.053 Foo::f() 0.072 0.044 $x = $this->x 0.065 0.038 $this->x = 0 0.057 0.029 $this->x += 2 0.065 0.038 ++$this->x 0.061 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.035 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.056 $this->f() 0.073 0.045 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.1.2
empty_loop 0.028 func() 0.064 0.036 undef_func() 0.068 0.040 int_func() 0.050 0.022 $x = self::$x 0.088 0.060 self::$x = 0 0.080 0.052 isset(self::$x) 0.087 0.059 empty(self::$x) 0.087 0.059 $x = Foo::$x 0.076 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.071 0.043 self::f() 0.081 0.053 Foo::f() 0.074 0.046 $x = $this->x 0.065 0.037 $this->x = 0 0.056 0.028 $this->x += 2 0.065 0.037 ++$this->x 0.063 0.035 --$this->x 0.062 0.035 $this->x++ 0.064 0.037 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.073 0.045 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.1.1
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.067 0.039 int_func() 0.044 0.017 $x = self::$x 0.086 0.059 self::$x = 0 0.079 0.051 isset(self::$x) 0.084 0.056 empty(self::$x) 0.087 0.059 $x = Foo::$x 0.075 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.082 0.054 Foo::f() 0.077 0.049 $x = $this->x 0.066 0.038 $this->x = 0 0.057 0.029 $this->x += 2 0.066 0.038 ++$this->x 0.062 0.034 --$this->x 0.063 0.036 $this->x++ 0.062 0.035 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.054 empty($this->x) 0.083 0.056 $this->f() 0.073 0.046 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.1.0
empty_loop 0.028 func() 0.064 0.036 undef_func() 0.067 0.039 int_func() 0.045 0.017 $x = self::$x 0.088 0.060 self::$x = 0 0.079 0.051 isset(self::$x) 0.086 0.058 empty(self::$x) 0.088 0.060 $x = Foo::$x 0.077 0.050 Foo::$x = 0 0.053 0.025 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.082 0.054 Foo::f() 0.074 0.047 $x = $this->x 0.065 0.038 $this->x = 0 0.057 0.029 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.035 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.073 0.045 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.0.30
empty_loop 0.017 func() 0.053 0.036 undef_func() 0.057 0.039 int_func() 0.027 0.010 $x = self::$x 0.071 0.054 self::$x = 0 0.061 0.044 isset(self::$x) 0.075 0.057 empty(self::$x) 0.075 0.058 $x = Foo::$x 0.040 0.023 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.042 0.025 empty(Foo::$x) 0.047 0.030 self::f() 0.076 0.059 Foo::f() 0.065 0.048 $x = $this->x 0.039 0.022 $this->x = 0 0.034 0.017 $this->x += 2 0.056 0.038 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.053 0.036 empty($this->x) 0.059 0.042 $this->f() 0.065 0.048 $x = Foo::TEST 0.056 0.039 new Foo() 0.167 0.150 $x = TEST 0.028 0.011 $x = $_GET 0.056 0.038 $x = $GLOBALS['v'] 0.089 0.072 $x = $hash['v'] 0.063 0.046 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.047 0.030 $x = $f ? $f : tmp 0.049 0.031 ------------------------ Total 1.923
Output for 8.0.29
empty_loop 0.017 func() 0.050 0.033 undef_func() 0.055 0.038 int_func() 0.024 0.007 $x = self::$x 0.072 0.055 self::$x = 0 0.062 0.045 isset(self::$x) 0.071 0.054 empty(self::$x) 0.078 0.061 $x = Foo::$x 0.048 0.030 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.039 0.022 empty(Foo::$x) 0.046 0.029 self::f() 0.077 0.060 Foo::f() 0.065 0.048 $x = $this->x 0.037 0.020 $this->x = 0 0.032 0.015 $this->x += 2 0.055 0.038 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.039 $this->f() 0.062 0.045 $x = Foo::TEST 0.056 0.039 new Foo() 0.203 0.186 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.085 0.068 $x = $hash['v'] 0.066 0.049 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.043 0.026 $x = $f ?: tmp 0.049 0.032 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.048 0.031 ------------------------ Total 1.944
Output for 8.0.28
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.056 0.039 int_func() 0.026 0.009 $x = self::$x 0.074 0.057 self::$x = 0 0.062 0.045 isset(self::$x) 0.068 0.051 empty(self::$x) 0.075 0.058 $x = Foo::$x 0.098 0.081 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.037 0.020 empty(Foo::$x) 0.042 0.025 self::f() 0.075 0.058 Foo::f() 0.064 0.047 $x = $this->x 0.037 0.020 $this->x = 0 0.032 0.015 $this->x += 2 0.055 0.038 ++$this->x 0.048 0.031 --$this->x 0.050 0.033 $this->x++ 0.048 0.031 $this->x-- 0.050 0.033 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.040 $this->f() 0.063 0.046 $x = Foo::TEST 0.059 0.042 new Foo() 0.206 0.189 $x = TEST 0.028 0.011 $x = $_GET 0.057 0.040 $x = $GLOBALS['v'] 0.085 0.068 $x = $hash['v'] 0.068 0.051 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.044 0.028 $x = $f ?: tmp 0.045 0.028 $x = $f ? $f : $a 0.051 0.034
Process exited with code 137.
Output for 8.0.27
empty_loop 0.017 func() 0.050 0.033 undef_func() 0.056 0.039 int_func() 0.025 0.008 $x = self::$x 0.073 0.056 self::$x = 0 0.061 0.044 isset(self::$x) 0.068 0.051 empty(self::$x) 0.070 0.053 $x = Foo::$x 0.046 0.029 Foo::$x = 0 0.034 0.017 isset(Foo::$x) 0.039 0.022 empty(Foo::$x) 0.043 0.026 self::f() 0.075 0.058 Foo::f() 0.063 0.046 $x = $this->x 0.037 0.020 $this->x = 0 0.032 0.015 $this->x += 2 0.056 0.039 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.051 0.034 $this->x-- 0.050 0.033 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.039 $this->f() 0.061 0.044 $x = Foo::TEST 0.057 0.040 new Foo() 0.207 0.190 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.085 0.068 $x = $hash['v'] 0.067 0.050 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.043 0.026 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.047 0.030 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.936
Output for 8.0.26
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.056 0.039 int_func() 0.031 0.014 $x = self::$x 0.079 0.063 self::$x = 0 0.061 0.044 isset(self::$x) 0.086 0.069 empty(self::$x) 0.076 0.059 $x = Foo::$x 0.042 0.025 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.038 0.021 empty(Foo::$x) 0.042 0.025 self::f() 0.077 0.060 Foo::f() 0.064 0.047 $x = $this->x 0.038 0.021 $this->x = 0 0.034 0.017 $this->x += 2 0.055 0.038 ++$this->x 0.049 0.032 --$this->x 0.048 0.032 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.039 $this->f() 0.062 0.045 $x = Foo::TEST 0.056 0.039 new Foo() 0.198 0.181 $x = TEST 0.029 0.012 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.086 0.069 $x = $hash['v'] 0.065 0.048 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.953
Output for 8.0.25
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.055 0.038 int_func() 0.039 0.022 $x = self::$x 0.082 0.065 self::$x = 0 0.061 0.044 isset(self::$x) 0.066 0.049 empty(self::$x) 0.071 0.054 $x = Foo::$x 0.041 0.024 Foo::$x = 0 0.029 0.012 isset(Foo::$x) 0.036 0.019 empty(Foo::$x) 0.042 0.025 self::f() 0.075 0.058 Foo::f() 0.063 0.046 $x = $this->x 0.037 0.021 $this->x = 0 0.032 0.015 $this->x += 2 0.055 0.038 ++$this->x 0.049 0.032 --$this->x 0.049 0.032 $this->x++ 0.049 0.032 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.060 0.043 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.206 0.189 $x = TEST 0.028 0.011 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.086 0.069 $x = $hash['v'] 0.063 0.046 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.044 0.027 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.048 0.032 ------------------------ Total 1.944
Output for 8.0.24
empty_loop 0.017 func() 0.050 0.034 undef_func() 0.056 0.040 int_func() 0.028 0.011 $x = self::$x 0.069 0.052 self::$x = 0 0.064 0.048 isset(self::$x) 0.070 0.053 empty(self::$x) 0.076 0.060 $x = Foo::$x 0.041 0.024 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.043 0.026 empty(Foo::$x) 0.046 0.029 self::f() 0.075 0.058 Foo::f() 0.063 0.046 $x = $this->x 0.037 0.021 $this->x = 0 0.036 0.019 $this->x += 2 0.055 0.038 ++$this->x 0.048 0.031 --$this->x 0.049 0.032 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.052 0.035 empty($this->x) 0.065 0.048 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.195 0.178 $x = TEST 0.028 0.011 $x = $_GET 0.056 0.039 $x = $GLOBALS['v'] 0.093 0.076 $x = $hash['v'] 0.063 0.046 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.047 0.030 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.947
Output for 8.0.23
empty_loop 0.017 func() 0.050 0.034 undef_func() 0.056 0.039 int_func() 0.031 0.014 $x = self::$x 0.069 0.052 self::$x = 0 0.062 0.045 isset(self::$x) 0.072 0.055 empty(self::$x) 0.077 0.060 $x = Foo::$x 0.044 0.027 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.040 0.023 empty(Foo::$x) 0.042 0.025 self::f() 0.075 0.058 Foo::f() 0.063 0.046 $x = $this->x 0.038 0.021 $this->x = 0 0.032 0.015 $this->x += 2 0.056 0.039 ++$this->x 0.048 0.031 --$this->x 0.048 0.032 $this->x++ 0.050 0.033 $this->x-- 0.049 0.032 isset($this->x) 0.051 0.035 empty($this->x) 0.056 0.039 $this->f() 0.062 0.045 $x = Foo::TEST 0.056 0.039 new Foo() 0.209 0.192 $x = TEST 0.028 0.011 $x = $_GET 0.057 0.040 $x = $GLOBALS['v'] 0.087 0.070 $x = $hash['v'] 0.070 0.053 $x = $str[0] 0.046 0.030 $x = $a ?: null 0.045 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.049 0.032 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.957
Output for 8.0.22
empty_loop 0.017 func() 0.051 0.034 undef_func() 0.057 0.040 int_func() 0.032 0.015 $x = self::$x 0.075 0.058 self::$x = 0 0.062 0.045 isset(self::$x) 0.076 0.060 empty(self::$x) 0.077 0.060 $x = Foo::$x 0.046 0.029 Foo::$x = 0 0.029 0.013 isset(Foo::$x) 0.042 0.025 empty(Foo::$x) 0.046 0.029 self::f() 0.075 0.059 Foo::f() 0.064 0.047 $x = $this->x 0.037 0.020 $this->x = 0 0.032 0.015 $this->x += 2 0.055 0.038 ++$this->x 0.049 0.032 --$this->x 0.048 0.031 $this->x++ 0.048 0.032 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.056 0.039 $this->f() 0.062 0.045 $x = Foo::TEST 0.055 0.038 new Foo() 0.196 0.179 $x = TEST 0.029 0.012 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.085 0.068 $x = $hash['v'] 0.063 0.046 $x = $str[0] 0.048 0.031 $x = $a ?: null 0.044 0.027 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.952
Output for 8.0.21
empty_loop 0.017 func() 0.050 0.033 undef_func() 0.055 0.039 int_func() 0.030 0.014 $x = self::$x 0.069 0.052 self::$x = 0 0.061 0.044 isset(self::$x) 0.075 0.058 empty(self::$x) 0.075 0.058 $x = Foo::$x 0.044 0.027 Foo::$x = 0 0.029 0.013 isset(Foo::$x) 0.052 0.035 empty(Foo::$x) 0.058 0.041 self::f() 0.075 0.058 Foo::f() 0.063 0.046 $x = $this->x 0.037 0.020 $this->x = 0 0.033 0.016 $this->x += 2 0.055 0.038 ++$this->x 0.049 0.033 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.057 0.040 $this->f() 0.065 0.048 $x = Foo::TEST 0.055 0.038 new Foo() 0.189 0.172 $x = TEST 0.028 0.011 $x = $_GET 0.055 0.038 $x = $GLOBALS['v'] 0.086 0.069 $x = $hash['v'] 0.065 0.048 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.044 0.028 $x = $f ?: tmp 0.043 0.026 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.049 0.032 ------------------------ Total 1.951
Output for 8.0.20
empty_loop 0.017 func() 0.050 0.033 undef_func() 0.055 0.038 int_func() 0.034 0.017 $x = self::$x 0.072 0.055 self::$x = 0 0.061 0.044 isset(self::$x) 0.078 0.061 empty(self::$x) 0.081 0.064 $x = Foo::$x 0.046 0.029 Foo::$x = 0 0.031 0.014 isset(Foo::$x) 0.043 0.026 empty(Foo::$x) 0.046 0.029 self::f() 0.074 0.057 Foo::f() 0.064 0.047 $x = $this->x 0.037 0.020 $this->x = 0 0.032 0.015 $this->x += 2 0.055 0.039 ++$this->x 0.048 0.031 --$this->x 0.048 0.031 $this->x++ 0.048 0.031 $this->x-- 0.048 0.031 isset($this->x) 0.051 0.034 empty($this->x) 0.060 0.043 $this->f() 0.065 0.048 $x = Foo::TEST 0.055 0.038 new Foo() 0.204 0.187 $x = TEST 0.029 0.012 $x = $_GET 0.065 0.048 $x = $GLOBALS['v'] 0.094 0.077 $x = $hash['v'] 0.067 0.050 $x = $str[0] 0.048 0.031 $x = $a ?: null 0.046 0.029 $x = $f ?: tmp 0.046 0.029 $x = $f ? $f : $a 0.048 0.031 $x = $f ? $f : tmp 0.048 0.031 ------------------------ Total 1.993
Output for 8.0.19
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.067 0.039 int_func() 0.045 0.017 $x = self::$x 0.089 0.062 self::$x = 0 0.082 0.054 isset(self::$x) 0.087 0.059 empty(self::$x) 0.090 0.063 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.085 0.058 Foo::f() 0.075 0.047 $x = $this->x 0.065 0.038 $this->x = 0 0.055 0.027 $this->x += 2 0.065 0.038 ++$this->x 0.062 0.035 --$this->x 0.062 0.035 $this->x++ 0.062 0.034 $this->x-- 0.062 0.035 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.073 0.045 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.0.18
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.067 0.039 int_func() 0.045 0.018 $x = self::$x 0.092 0.065 self::$x = 0 0.082 0.054 isset(self::$x) 0.088 0.060 empty(self::$x) 0.090 0.063 $x = Foo::$x 0.076 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.071 0.044 self::f() 0.084 0.056 Foo::f() 0.074 0.046 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.028 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.035 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.056 $this->f() 0.073 0.046 $x = Foo::TEST 0.123 0.096
Process exited with code 137.
Output for 8.0.17
empty_loop 0.028 func() 0.074 0.045 undef_func() 0.067 0.039 int_func() 0.045 0.017 $x = self::$x 0.090 0.062 self::$x = 0 0.082 0.053 isset(self::$x) 0.088 0.059 empty(self::$x) 0.090 0.062 $x = Foo::$x 0.076 0.047 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.043 self::f() 0.084 0.055 Foo::f() 0.075 0.047 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.027 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.064 0.036 isset($this->x) 0.086 0.057 empty($this->x) 0.084 0.055 $this->f() 0.074 0.046 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.0.16
empty_loop 0.028 func() 0.065 0.037 undef_func() 0.067 0.039 int_func() 0.045 0.017 $x = self::$x 0.090 0.062 self::$x = 0 0.081 0.053 isset(self::$x) 0.087 0.059 empty(self::$x) 0.089 0.062 $x = Foo::$x 0.077 0.049 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.071 0.044 self::f() 0.084 0.056 Foo::f() 0.075 0.047 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.027 $this->x += 2 0.065 0.038 ++$this->x 0.062 0.034 --$this->x 0.062 0.035 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.054 empty($this->x) 0.083 0.055 $this->f() 0.074 0.046 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.0.15
empty_loop 0.028 func() 0.064 0.036 undef_func() 0.067 0.040 int_func() 0.045 0.017 $x = self::$x 0.091 0.063 self::$x = 0 0.082 0.054 isset(self::$x) 0.087 0.059 empty(self::$x) 0.091 0.063 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.054 0.027 isset(Foo::$x) 0.071 0.043 empty(Foo::$x) 0.072 0.044 self::f() 0.084 0.056 Foo::f() 0.075 0.047 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.028 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.035 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.073 0.045 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.0.14
empty_loop 0.029 func() 0.068 0.040 undef_func() 0.072 0.043 int_func() 0.046 0.018 $x = self::$x 0.096 0.067 self::$x = 0 0.086 0.058 isset(self::$x) 0.092 0.064 empty(self::$x) 0.095 0.067 $x = Foo::$x 0.078 0.049 Foo::$x = 0 0.055 0.027 isset(Foo::$x) 0.072 0.044 empty(Foo::$x) 0.074 0.046 self::f() 0.088 0.059 Foo::f() 0.081 0.053 $x = $this->x 0.066 0.038 $this->x = 0 0.060 0.031 $this->x += 2 0.068 0.039 ++$this->x 0.064 0.036 --$this->x 0.065 0.037 $this->x++ 0.065 0.036 $this->x-- 0.065 0.036 isset($this->x) 0.085 0.057 empty($this->x) 0.087 0.058 $this->f() 0.077 0.048 $x = Foo::TEST 0.127 0.099
Process exited with code 137.
Output for 8.0.13
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.066 0.039 int_func() 0.046 0.018 $x = self::$x 0.091 0.063 self::$x = 0 0.082 0.054 isset(self::$x) 0.087 0.059 empty(self::$x) 0.091 0.063 $x = Foo::$x 0.075 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.085 0.057 Foo::f() 0.074 0.047 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.027 $this->x += 2 0.065 0.038 ++$this->x 0.062 0.034 --$this->x 0.062 0.035 $this->x++ 0.062 0.034 $this->x-- 0.062 0.035 isset($this->x) 0.081 0.053 empty($this->x) 0.102 0.075 $this->f() 0.073 0.045 $x = Foo::TEST 0.124 0.097
Process exited with code 137.
Output for 8.0.12
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.066 0.039 int_func() 0.045 0.017 $x = self::$x 0.089 0.062 self::$x = 0 0.081 0.053 isset(self::$x) 0.091 0.063 empty(self::$x) 0.092 0.064 $x = Foo::$x 0.076 0.049 Foo::$x = 0 0.054 0.027 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.071 0.043 self::f() 0.084 0.057 Foo::f() 0.077 0.050 $x = $this->x 0.064 0.036 $this->x = 0 0.056 0.028 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.035 --$this->x 0.063 0.035 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.073 0.045 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.0.11
empty_loop 0.028 func() 0.063 0.036 undef_func() 0.068 0.040 int_func() 0.044 0.017 $x = self::$x 0.092 0.064 self::$x = 0 0.084 0.056 isset(self::$x) 0.086 0.059 empty(self::$x) 0.090 0.062 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.071 0.044 self::f() 0.084 0.056 Foo::f() 0.074 0.047 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.028 $this->x += 2 0.065 0.038 ++$this->x 0.062 0.035 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.035 isset($this->x) 0.081 0.053 empty($this->x) 0.085 0.057 $this->f() 0.073 0.046 $x = Foo::TEST 0.124 0.097
Process exited with code 137.
Output for 8.0.10
empty_loop 0.028 func() 0.068 0.040 undef_func() 0.072 0.044 int_func() 0.047 0.019 $x = self::$x 0.107 0.079 self::$x = 0 0.093 0.065 isset(self::$x) 0.102 0.074 empty(self::$x) 0.106 0.078 $x = Foo::$x 0.081 0.053 Foo::$x = 0 0.057 0.029 isset(Foo::$x) 0.075 0.047 empty(Foo::$x) 0.078 0.050 self::f() 0.101 0.073 Foo::f() 0.091 0.063 $x = $this->x 0.068 0.040 $this->x = 0 0.060 0.032 $this->x += 2 0.074 0.045 ++$this->x 0.069 0.041 --$this->x 0.070 0.042 $this->x++ 0.069 0.041 $this->x-- 0.066 0.038 isset($this->x) 0.093 0.065 empty($this->x) 0.095 0.067 $this->f() 0.084 0.055 $x = Foo::TEST 0.133 0.105
Process exited with code 137.
Output for 8.0.9
empty_loop 0.028 func() 0.064 0.036 undef_func() 0.067 0.040 int_func() 0.045 0.017 $x = self::$x 0.090 0.063 self::$x = 0 0.082 0.054 isset(self::$x) 0.091 0.063 empty(self::$x) 0.089 0.062 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.084 0.056 Foo::f() 0.074 0.047 $x = $this->x 0.064 0.036 $this->x = 0 0.056 0.028 $this->x += 2 0.065 0.038 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.073 0.045 $x = Foo::TEST 0.125 0.097
Process exited with code 137.
Output for 8.0.8
empty_loop 0.032 func() 0.105 0.073 undef_func() 0.113 0.081 int_func() 0.048 0.016 $x = self::$x 0.123 0.092 self::$x = 0 0.101 0.069 isset(self::$x) 0.123 0.091 empty(self::$x) 0.122 0.090 $x = Foo::$x 0.081 0.049 Foo::$x = 0 0.049 0.017 isset(Foo::$x) 0.076 0.044 empty(Foo::$x) 0.082 0.050 self::f() 0.198 0.166 Foo::f() 0.109 0.077 $x = $this->x 0.058 0.026 $this->x = 0 0.055 0.023 $this->x += 2 0.090 0.058 ++$this->x 0.078 0.046 --$this->x 0.077 0.046 $this->x++ 0.080 0.048 $this->x-- 0.077 0.045 isset($this->x) 0.090 0.058
Process exited with code 137.
Output for 8.0.7
empty_loop 0.028 func() 0.065 0.037 undef_func() 0.066 0.039 int_func() 0.045 0.017 $x = self::$x 0.090 0.062 self::$x = 0 0.082 0.054 isset(self::$x) 0.087 0.059 empty(self::$x) 0.090 0.062 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.053 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.083 0.056 Foo::f() 0.074 0.046 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.027 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.055 $this->f() 0.073 0.045 $x = Foo::TEST 0.123 0.095
Process exited with code 137.
Output for 8.0.6
empty_loop 0.028 func() 0.064 0.036 undef_func() 0.067 0.039 int_func() 0.044 0.017 $x = self::$x 0.106 0.079 self::$x = 0 0.081 0.054 isset(self::$x) 0.091 0.064 empty(self::$x) 0.091 0.064 $x = Foo::$x 0.075 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.071 0.044 self::f() 0.085 0.057 Foo::f() 0.075 0.047 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.028 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.054 empty($this->x) 0.087 0.060 $this->f() 0.077 0.049 $x = Foo::TEST 0.125 0.098
Process exited with code 137.
Output for 8.0.5
empty_loop 0.028 func() 0.064 0.036 undef_func() 0.067 0.039 int_func() 0.045 0.017 $x = self::$x 0.108 0.080 self::$x = 0 0.082 0.054 isset(self::$x) 0.092 0.065 empty(self::$x) 0.091 0.064 $x = Foo::$x 0.075 0.047 Foo::$x = 0 0.053 0.026 isset(Foo::$x) 0.069 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.083 0.056 Foo::f() 0.073 0.045 $x = $this->x 0.064 0.036 $this->x = 0 0.055 0.028 $this->x += 2 0.065 0.037 ++$this->x 0.062 0.034 --$this->x 0.062 0.034 $this->x++ 0.062 0.034 $this->x-- 0.062 0.034 isset($this->x) 0.081 0.053 empty($this->x) 0.086 0.059 $this->f() 0.073 0.045 $x = Foo::TEST 0.123 0.095
Process exited with code 137.
Output for 8.0.3
empty_loop 0.024 func() 0.092 0.068 undef_func() 0.103 0.079 int_func() 0.046 0.022 $x = self::$x 0.129 0.105 self::$x = 0 0.100 0.076 isset(self::$x) 0.124 0.100 empty(self::$x) 0.129 0.105 $x = Foo::$x 0.088 0.064 Foo::$x = 0 0.052 0.029 isset(Foo::$x) 0.071 0.048 empty(Foo::$x) 0.082 0.058 self::f() 0.136 0.112 Foo::f() 0.110 0.087 $x = $this->x 0.057 0.033 $this->x = 0 0.056 0.032 $this->x += 2 0.085 0.061 ++$this->x 0.076 0.053 --$this->x 0.095 0.072 $this->x++ 0.111 0.088 $this->x-- 0.087 0.063 isset($this->x) 0.090 0.066
Process exited with code 137.
Output for 8.0.2
empty_loop 0.023 func() 0.092 0.068 undef_func() 0.100 0.077 int_func() 0.048 0.025 $x = self::$x 0.121 0.098 self::$x = 0 0.105 0.082 isset(self::$x) 0.126 0.103 empty(self::$x) 0.129 0.105 $x = Foo::$x 0.077 0.054 Foo::$x = 0 0.049 0.026 isset(Foo::$x) 0.066 0.043 empty(Foo::$x) 0.077 0.054 self::f() 0.150 0.127 Foo::f() 0.109 0.086 $x = $this->x 0.057 0.034 $this->x = 0 0.054 0.030 $this->x += 2 0.090 0.067 ++$this->x 0.079 0.056 --$this->x 0.077 0.054 $this->x++ 0.076 0.053 $this->x-- 0.077 0.054 isset($this->x) 0.084 0.061 empty($this->x) 0.092 0.068
Process exited with code 137.
Output for 8.0.1
empty_loop 0.027 func() 0.064 0.036 undef_func() 0.066 0.039 int_func() 0.044 0.017 $x = self::$x 0.089 0.062 self::$x = 0 0.081 0.054 isset(self::$x) 0.089 0.061 empty(self::$x) 0.091 0.064 $x = Foo::$x 0.075 0.048 Foo::$x = 0 0.054 0.026 isset(Foo::$x) 0.070 0.042 empty(Foo::$x) 0.072 0.044 self::f() 0.084 0.056 Foo::f() 0.076 0.048 $x = $this->x 0.064 0.037 $this->x = 0 0.054 0.026 $this->x += 2 0.069 0.041 ++$this->x 0.062 0.034 --$this->x 0.063 0.035 $this->x++ 0.062 0.035 $this->x-- 0.062 0.035 isset($this->x) 0.081 0.053 empty($this->x) 0.083 0.056 $this->f() 0.074 0.046 $x = Foo::TEST 0.124 0.097
Process exited with code 137.
Output for 8.0.0
empty_loop 0.026 func() 0.108 0.082 undef_func() 0.128 0.102 int_func() 0.055 0.028 $x = self::$x 0.199 0.173 self::$x = 0 0.194 0.168 isset(self::$x) 0.162 0.136 empty(self::$x) 0.164 0.138 $x = Foo::$x 0.095 0.069 Foo::$x = 0 0.072 0.045 isset(Foo::$x) 0.086 0.060 empty(Foo::$x) 0.091 0.065 self::f() 0.152 0.126 Foo::f() 0.133 0.107 $x = $this->x 0.073 0.046 $this->x = 0 0.071 0.044 $this->x += 2 0.119 0.093 ++$this->x 0.104 0.078
Process exited with code 137.
Output for 7.4.33
empty_loop 0.017 func() 0.068 0.051 undef_func() 0.069 0.052 int_func() 0.046 0.030 $x = self::$x 0.078 0.061 self::$x = 0 0.065 0.048 isset(self::$x) 0.072 0.056 empty(self::$x) 0.088 0.071 $x = Foo::$x 0.042 0.026 Foo::$x = 0 0.030 0.013 isset(Foo::$x) 0.036 0.020 empty(Foo::$x) 0.053 0.036 self::f() 0.079 0.062 Foo::f() 0.066 0.050 $x = $this->x 0.034 0.017 $this->x = 0 0.035 0.018 $this->x += 2 0.059 0.042 ++$this->x 0.052 0.035 --$this->x 0.052 0.035 $this->x++ 0.065 0.048 $this->x-- 0.062 0.045 isset($this->x) 0.061 0.045 empty($this->x) 0.064 0.047 $this->f() 0.067 0.050 $x = Foo::TEST 0.059 0.042 new Foo() 0.211 0.194 $x = TEST 0.030 0.014 $x = $_GET 0.057 0.040 $x = $GLOBALS['v'] 0.088 0.072 $x = $hash['v'] 0.064 0.047 $x = $str[0] 0.046 0.029 $x = $a ?: null 0.046 0.029
Process exited with code 137.
Output for 7.4.32
empty_loop 0.017 func() 0.066 0.049 undef_func() 0.067 0.051 int_func() 0.041 0.024 $x = self::$x 0.075 0.058 self::$x = 0 0.065 0.048 isset(self::$x) 0.076 0.059 empty(self::$x) 0.079 0.062 $x = Foo::$x 0.040 0.023 Foo::$x = 0 0.032 0.015 isset(Foo::$x) 0.047 0.030 empty(Foo::$x) 0.051 0.034 self::f() 0.079 0.062 Foo::f() 0.068 0.051 $x = $this->x 0.039 0.022 $this->x = 0 0.036 0.019 $this->x += 2 0.060 0.043 ++$this->x 0.052 0.035 --$this->x 0.051 0.035 $this->x++ 0.057 0.041 $this->x-- 0.058 0.041 isset($this->x) 0.063 0.046 empty($this->x) 0.064 0.047 $this->f() 0.067 0.050 $x = Foo::TEST 0.059 0.042 new Foo() 0.231 0.215 $x = TEST 0.029 0.012 $x = $_GET 0.059 0.042 $x = $GLOBALS['v'] 0.094 0.077 $x = $hash['v'] 0.063 0.046 $x = $str[0] 0.044 0.027 $x = $a ?: null 0.046 0.030
Process exited with code 137.
Output for 7.4.30
empty_loop 0.017 func() 0.066 0.049 undef_func() 0.068 0.051 int_func() 0.041 0.024 $x = self::$x 0.090 0.073 self::$x = 0 0.064 0.047 isset(self::$x) 0.087 0.070 empty(self::$x) 0.091 0.074 $x = Foo::$x 0.039 0.022 Foo::$x = 0 0.029 0.012 isset(Foo::$x) 0.036 0.020 empty(Foo::$x) 0.039 0.022 self::f() 0.078 0.061 Foo::f() 0.066 0.049 $x = $this->x 0.034 0.017 $this->x = 0 0.035 0.018 $this->x += 2 0.059 0.043 ++$this->x 0.051 0.035 --$this->x 0.051 0.034 $this->x++ 0.056 0.039 $this->x-- 0.057 0.040 isset($this->x) 0.060 0.044 empty($this->x) 0.063 0.046 $this->f() 0.067 0.050 $x = Foo::TEST 0.058 0.041 new Foo() 0.226 0.209 $x = TEST 0.029 0.012 $x = $_GET 0.055 0.039 $x = $GLOBALS['v'] 0.097 0.080 $x = $hash['v'] 0.063 0.046 $x = $str[0] 0.045 0.028 $x = $a ?: null 0.045 0.028
Process exited with code 137.
Output for 7.4.29
empty_loop 0.028 func() 0.073 0.045 undef_func() 0.084 0.056 int_func() 0.066 0.039 $x = self::$x 0.094 0.066 self::$x = 0 0.084 0.056 isset(self::$x) 0.099 0.071 empty(self::$x) 0.101 0.074 $x = Foo::$x 0.078 0.050 Foo::$x = 0 0.055 0.028 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.080 0.052 self::f() 0.092 0.065 Foo::f() 0.079 0.052 $x = $this->x 0.064 0.037 $this->x = 0 0.059 0.031 $this->x += 2 0.068 0.040 ++$this->x 0.064 0.036 --$this->x 0.063 0.035 $this->x++ 0.080 0.052 $this->x-- 0.080 0.053 isset($this->x) 0.091 0.063 empty($this->x) 0.091 0.063 $this->f() 0.078 0.050 $x = Foo::TEST 0.115 0.087
Process exited with code 137.
Output for 7.4.28
empty_loop 0.028 func() 0.075 0.047 undef_func() 0.092 0.065 int_func() 0.066 0.039 $x = self::$x 0.097 0.069 self::$x = 0 0.084 0.057 isset(self::$x) 0.110 0.082 empty(self::$x) 0.102 0.075 $x = Foo::$x 0.078 0.050 Foo::$x = 0 0.056 0.028 isset(Foo::$x) 0.083 0.055 empty(Foo::$x) 0.079 0.052 self::f() 0.092 0.064 Foo::f() 0.081 0.053 $x = $this->x 0.064 0.037 $this->x = 0 0.059 0.031 $this->x += 2 0.067 0.040 ++$this->x 0.063 0.035 --$this->x 0.063 0.035 $this->x++ 0.090 0.062 $this->x-- 0.090 0.063 isset($this->x) 0.091 0.063 empty($this->x) 0.091 0.064 $this->f() 0.081 0.054
Process exited with code 137.
Output for 7.4.27
empty_loop 0.028 func() 0.074 0.046 undef_func() 0.084 0.056 int_func() 0.066 0.039 $x = self::$x 0.094 0.066 self::$x = 0 0.087 0.059 isset(self::$x) 0.100 0.073 empty(self::$x) 0.103 0.075 $x = Foo::$x 0.077 0.050 Foo::$x = 0 0.055 0.028 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.080 0.052 self::f() 0.091 0.063 Foo::f() 0.083 0.056 $x = $this->x 0.064 0.037 $this->x = 0 0.059 0.031 $this->x += 2 0.070 0.043 ++$this->x 0.063 0.035 --$this->x 0.063 0.035 $this->x++ 0.080 0.052 $this->x-- 0.080 0.052 isset($this->x) 0.091 0.063 empty($this->x) 0.091 0.063 $this->f() 0.078 0.051 $x = Foo::TEST 0.134 0.106
Process exited with code 137.
Output for 7.4.26
empty_loop 0.028 func() 0.076 0.048 undef_func() 0.086 0.059 int_func() 0.066 0.039 $x = self::$x 0.096 0.068 self::$x = 0 0.085 0.057 isset(self::$x) 0.099 0.071 empty(self::$x) 0.102 0.074 $x = Foo::$x 0.077 0.049 Foo::$x = 0 0.056 0.028 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.079 0.051 self::f() 0.093 0.065 Foo::f() 0.078 0.050 $x = $this->x 0.065 0.037 $this->x = 0 0.060 0.032 $this->x += 2 0.070 0.042 ++$this->x 0.063 0.035 --$this->x 0.062 0.034 $this->x++ 0.080 0.052 $this->x-- 0.080 0.052 isset($this->x) 0.090 0.062 empty($this->x) 0.091 0.063 $this->f() 0.078 0.050 $x = Foo::TEST 0.115 0.087
Process exited with code 137.
Output for 7.4.25
empty_loop 0.029 func() 0.079 0.051 undef_func() 0.085 0.056 int_func() 0.067 0.038 $x = self::$x 0.102 0.073 self::$x = 0 0.090 0.061 isset(self::$x) 0.109 0.080 empty(self::$x) 0.110 0.081 $x = Foo::$x 0.078 0.050 Foo::$x = 0 0.056 0.027 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.080 0.052 self::f() 0.095 0.066 Foo::f() 0.079 0.050 $x = $this->x 0.065 0.036 $this->x = 0 0.059 0.031 $this->x += 2 0.067 0.038 ++$this->x 0.068 0.039 --$this->x 0.066 0.038 $this->x++ 0.082 0.054 $this->x-- 0.086 0.057 isset($this->x) 0.092 0.064 empty($this->x) 0.091 0.063 $this->f() 0.086 0.057
Process exited with code 137.
Output for 7.4.24
empty_loop 0.027 func() 0.074 0.046 undef_func() 0.084 0.056 int_func() 0.066 0.039 $x = self::$x 0.095 0.067 self::$x = 0 0.085 0.057 isset(self::$x) 0.100 0.072 empty(self::$x) 0.103 0.076 $x = Foo::$x 0.078 0.050 Foo::$x = 0 0.056 0.029 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.080 0.052 self::f() 0.092 0.065 Foo::f() 0.078 0.051 $x = $this->x 0.064 0.037 $this->x = 0 0.059 0.031 $this->x += 2 0.067 0.040 ++$this->x 0.063 0.035 --$this->x 0.064 0.036 $this->x++ 0.081 0.053 $this->x-- 0.080 0.053 isset($this->x) 0.091 0.064 empty($this->x) 0.091 0.064 $this->f() 0.078 0.050 $x = Foo::TEST 0.115 0.087
Process exited with code 137.
Output for 7.4.23
empty_loop 0.028 func() 0.074 0.047 undef_func() 0.084 0.057 int_func() 0.066 0.039 $x = self::$x 0.094 0.067 self::$x = 0 0.084 0.056 isset(self::$x) 0.099 0.071 empty(self::$x) 0.103 0.076 $x = Foo::$x 0.078 0.051 Foo::$x = 0 0.055 0.028 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.079 0.052 self::f() 0.092 0.064 Foo::f() 0.078 0.051 $x = $this->x 0.064 0.036 $this->x = 0 0.059 0.031 $this->x += 2 0.067 0.039 ++$this->x 0.062 0.035 --$this->x 0.062 0.035 $this->x++ 0.080 0.052 $this->x-- 0.080 0.052 isset($this->x) 0.090 0.063 empty($this->x) 0.092 0.064 $this->f() 0.079 0.051 $x = Foo::TEST 0.115 0.087
Process exited with code 137.
Output for 7.4.22
empty_loop 0.041 func() 0.165 0.124 undef_func() 0.180 0.139 int_func() 0.089 0.047 $x = self::$x 0.202 0.161 self::$x = 0 0.176 0.135 isset(self::$x) 0.168 0.127 empty(self::$x) 0.170 0.129 $x = Foo::$x 0.135 0.094 Foo::$x = 0 0.097 0.055 isset(Foo::$x) 0.088 0.046 empty(Foo::$x) 0.098 0.056 self::f() 0.165 0.124 Foo::f() 0.136 0.095 $x = $this->x 0.075 0.034
Process exited with code 137.
Output for 7.4.21
empty_loop 0.024 func() 0.131 0.107 undef_func() 0.118 0.094 int_func() 0.062 0.037 $x = self::$x 0.124 0.100 self::$x = 0 0.134 0.110 isset(self::$x) 0.124 0.100 empty(self::$x) 0.152 0.128 $x = Foo::$x 0.105 0.081 Foo::$x = 0 0.053 0.029 isset(Foo::$x) 0.079 0.054 empty(Foo::$x) 0.079 0.055 self::f() 0.202 0.178 Foo::f() 0.179 0.155 $x = $this->x 0.088 0.064 $this->x = 0 0.057 0.033 $this->x += 2 0.096 0.072 ++$this->x 0.105 0.081
Process exited with code 137.
Output for 7.4.20
empty_loop 0.028 func() 0.083 0.054 undef_func() 0.098 0.070 int_func() 0.067 0.039 $x = self::$x 0.113 0.085 self::$x = 0 0.093 0.065 isset(self::$x) 0.110 0.082 empty(self::$x) 0.110 0.082 $x = Foo::$x 0.081 0.052 Foo::$x = 0 0.056 0.028 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.080 0.051 self::f() 0.093 0.064 Foo::f() 0.078 0.050 $x = $this->x 0.064 0.036 $this->x = 0 0.060 0.032 $this->x += 2 0.067 0.039 ++$this->x 0.063 0.034 --$this->x 0.062 0.034 $this->x++ 0.080 0.051 $this->x-- 0.081 0.052 isset($this->x) 0.091 0.062 empty($this->x) 0.091 0.062 $this->f() 0.078 0.049
Process exited with code 137.
Output for 7.4.19
empty_loop 0.027 func() 0.075 0.048 undef_func() 0.084 0.056 int_func() 0.067 0.040 $x = self::$x 0.103 0.075 self::$x = 0 0.085 0.058 isset(self::$x) 0.103 0.075 empty(self::$x) 0.106 0.079 $x = Foo::$x 0.079 0.051 Foo::$x = 0 0.056 0.028 isset(Foo::$x) 0.078 0.050 empty(Foo::$x) 0.080 0.052 self::f() 0.094 0.066 Foo::f() 0.079 0.051 $x = $this->x 0.064 0.037 $this->x = 0 0.059 0.031 $this->x += 2 0.067 0.040 ++$this->x 0.063 0.035 --$this->x 0.062 0.035 $this->x++ 0.080 0.053 $this->x-- 0.080 0.053 isset($this->x) 0.091 0.063 empty($this->x) 0.091 0.064 $this->f() 0.078 0.051 $x = Foo::TEST 0.115 0.087
Process exited with code 137.
Output for 7.4.16
empty_loop 0.027 func() 0.132 0.106 undef_func() 0.119 0.092 int_func() 0.062 0.036 $x = self::$x 0.125 0.098 self::$x = 0 0.104 0.078 isset(self::$x) 0.122 0.095 empty(self::$x) 0.128 0.101 $x = Foo::$x 0.082 0.055 Foo::$x = 0 0.050 0.023 isset(Foo::$x) 0.071 0.045 empty(Foo::$x) 0.099 0.072 self::f() 0.152 0.126 Foo::f() 0.112 0.086 $x = $this->x 0.062 0.035 $this->x = 0 0.054 0.028 $this->x += 2 0.101 0.075 ++$this->x 0.088 0.061 --$this->x 0.079 0.052 $this->x++ 0.121 0.094 $this->x-- 0.096 0.070
Process exited with code 137.
Output for 7.4.15
empty_loop 0.024 func() 0.110 0.086 undef_func() 0.122 0.098 int_func() 0.064 0.040 $x = self::$x 0.162 0.137 self::$x = 0 0.103 0.079 isset(self::$x) 0.128 0.104 empty(self::$x) 0.146 0.122 $x = Foo::$x 0.079 0.054 Foo::$x = 0 0.057 0.032 isset(Foo::$x) 0.090 0.066 empty(Foo::$x) 0.111 0.086 self::f() 0.142 0.118 Foo::f() 0.118 0.093 $x = $this->x 0.061 0.037 $this->x = 0 0.056 0.031 $this->x += 2 0.089 0.065 ++$this->x 0.077 0.053 --$this->x 0.079 0.055 $this->x++ 0.099 0.075
Process exited with code 137.
Output for 7.4.14
empty_loop 0.023 func() 0.132 0.109 undef_func() 0.126 0.103 int_func() 0.067 0.044 $x = self::$x 0.158 0.135 self::$x = 0 0.119 0.095 isset(self::$x) 0.133 0.109 empty(self::$x) 0.138 0.115 $x = Foo::$x 0.082 0.059 Foo::$x = 0 0.052 0.028 isset(Foo::$x) 0.098 0.075 empty(Foo::$x) 0.108 0.085 self::f() 0.155 0.132 Foo::f() 0.130 0.107 $x = $this->x 0.068 0.044 $this->x = 0 0.066 0.043 $this->x += 2 0.102 0.079 ++$this->x 0.083 0.060 --$this->x 0.087 0.064
Process exited with code 137.
Output for 7.4.13
empty_loop 0.024 func() 0.113 0.089 undef_func() 0.123 0.098 int_func() 0.068 0.044 $x = self::$x 0.221 0.197 self::$x = 0 0.184 0.160 isset(self::$x) 0.220 0.195 empty(self::$x) 0.176 0.152 $x = Foo::$x 0.083 0.059 Foo::$x = 0 0.054 0.029 isset(Foo::$x) 0.073 0.048 empty(Foo::$x) 0.095 0.071 self::f() 0.157 0.133 Foo::f() 0.135 0.111 $x = $this->x 0.067 0.043 $this->x = 0 0.064 0.040 $this->x += 2 0.099 0.074
Process exited with code 137.
Output for 7.4.12
empty_loop 0.025 func() 0.117 0.092 undef_func() 0.120 0.095 int_func() 0.065 0.041 $x = self::$x 0.134 0.110 self::$x = 0 0.110 0.085 isset(self::$x) 0.126 0.101 empty(self::$x) 0.142 0.117 $x = Foo::$x 0.083 0.059 Foo::$x = 0 0.052 0.028 isset(Foo::$x) 0.067 0.042 empty(Foo::$x) 0.086 0.062 self::f() 0.148 0.123 Foo::f() 0.120 0.095 $x = $this->x 0.062 0.038 $this->x = 0 0.060 0.036 $this->x += 2 0.093 0.069 ++$this->x 0.082 0.057 --$this->x 0.082 0.057 $this->x++ 0.099 0.074 $this->x-- 0.106 0.082
Process exited with code 137.
Output for 7.4.11
empty_loop 0.025 func() 0.113 0.088 undef_func() 0.134 0.110 int_func() 0.071 0.047 $x = self::$x 0.137 0.112 self::$x = 0 0.117 0.092 isset(self::$x) 0.129 0.104 empty(self::$x) 0.135 0.110 $x = Foo::$x 0.083 0.058 Foo::$x = 0 0.051 0.026 isset(Foo::$x) 0.076 0.051 empty(Foo::$x) 0.095 0.070 self::f() 0.146 0.121 Foo::f() 0.117 0.093 $x = $this->x 0.066 0.041 $this->x = 0 0.058 0.033 $this->x += 2 0.095 0.070 ++$this->x 0.082 0.057 --$this->x 0.084 0.059 $this->x++ 0.098 0.073 $this->x-- 0.099 0.074 isset($this->x) 0.106 0.081 empty($this->x) 0.108 0.083 $this->f() 0.122 0.097 $x = Foo::TEST 0.099 0.074
Process exited with code 137.
Output for 7.4.10
empty_loop 0.024 func() 0.116 0.092 undef_func() 0.124 0.101 int_func() 0.068 0.045 $x = self::$x 0.137 0.113 self::$x = 0 0.109 0.085 isset(self::$x) 0.127 0.103 empty(self::$x) 0.142 0.118 $x = Foo::$x 0.081 0.057 Foo::$x = 0 0.049 0.026 isset(Foo::$x) 0.068 0.045 empty(Foo::$x) 0.080 0.056 self::f() 0.142 0.118 Foo::f() 0.117 0.093 $x = $this->x 0.063 0.040 $this->x = 0 0.059 0.035 $this->x += 2 0.091 0.067 ++$this->x 0.084 0.060 --$this->x 0.084 0.061 $this->x++ 0.098 0.074 $this->x-- 0.099 0.075 isset($this->x) 0.104 0.080 empty($this->x) 0.105 0.081 $this->f() 0.125 0.102 $x = Foo::TEST 0.101 0.077
Process exited with code 137.
Output for 7.4.9
empty_loop 0.035 func() 0.174 0.139 undef_func() 0.193 0.158 int_func() 0.094 0.059 $x = self::$x 0.223 0.189 self::$x = 0 0.193 0.158 isset(self::$x) 0.236 0.201 empty(self::$x) 0.244 0.209 $x = Foo::$x 0.123 0.088 Foo::$x = 0 0.083 0.049 isset(Foo::$x) 0.110 0.075 empty(Foo::$x) 0.134 0.100 self::f() 0.214 0.179 Foo::f() 0.174 0.139 $x = $this->x 0.092 0.057 $this->x = 0 0.090 0.055
Process exited with code 137.
Output for 7.4.8
empty_loop 0.038 func() 0.174 0.136 undef_func() 0.189 0.151 int_func() 0.104 0.066 $x = self::$x 0.255 0.218 self::$x = 0 0.199 0.161 isset(self::$x) 0.197 0.160 empty(self::$x) 0.239 0.201 $x = Foo::$x 0.123 0.085 Foo::$x = 0 0.084 0.046 isset(Foo::$x) 0.109 0.071 empty(Foo::$x) 0.127 0.089 self::f() 0.258 0.220 Foo::f() 0.177 0.139 $x = $this->x 0.075 0.037 $this->x = 0 0.063 0.025
Process exited with code 137.
Output for 7.4.7
empty_loop 0.033 func() 0.143 0.110 undef_func() 0.136 0.103 int_func() 0.072 0.039 $x = self::$x 0.149 0.116 self::$x = 0 0.136 0.103 isset(self::$x) 0.134 0.101 empty(self::$x) 0.141 0.108 $x = Foo::$x 0.090 0.056 Foo::$x = 0 0.055 0.022 isset(Foo::$x) 0.071 0.038 empty(Foo::$x) 0.084 0.051 self::f() 0.146 0.113 Foo::f() 0.118 0.085 $x = $this->x 0.069 0.036 $this->x = 0 0.059 0.025 $this->x += 2 0.097 0.063 ++$this->x 0.094 0.060 --$this->x 0.096 0.063 $this->x++ 0.114 0.080 $this->x-- 0.098 0.065 isset($this->x) 0.102 0.069 empty($this->x) 0.113 0.080 $this->f() 0.123 0.089
Process exited with code 137.
Output for 7.4.6
empty_loop 0.034 func() 0.170 0.136 undef_func() 0.139 0.104 int_func() 0.066 0.031 $x = self::$x 0.132 0.098 self::$x = 0 0.109 0.074 isset(self::$x) 0.128 0.093 empty(self::$x) 0.136 0.102 $x = Foo::$x 0.078 0.044 Foo::$x = 0 0.050 0.015 isset(Foo::$x) 0.067 0.033 empty(Foo::$x) 0.084 0.049 self::f() 0.144 0.110 Foo::f() 0.117 0.082 $x = $this->x 0.061 0.027 $this->x = 0 0.060 0.025 $this->x += 2 0.094 0.059 ++$this->x 0.083 0.049 --$this->x 0.085 0.051 $this->x++ 0.102 0.068 $this->x-- 0.104 0.070 isset($this->x) 0.100 0.066 empty($this->x) 0.108 0.074 $this->f() 0.120 0.086 $x = Foo::TEST 0.101 0.066
Process exited with code 137.
Output for 7.4.5
empty_loop 0.029 func() 0.053 0.024 undef_func() 0.061 0.031 int_func() 0.048 0.019 $x = self::$x 0.068 0.039 self::$x = 0 0.061 0.032 isset(self::$x) 0.073 0.043 empty(self::$x) 0.078 0.049 $x = Foo::$x 0.059 0.029 Foo::$x = 0 0.042 0.013 isset(Foo::$x) 0.059 0.030 empty(Foo::$x) 0.061 0.031 self::f() 0.070 0.041 Foo::f() 0.060 0.030 $x = $this->x 0.049 0.019 $this->x = 0 0.045 0.016 $this->x += 2 0.051 0.022 ++$this->x 0.048 0.019 --$this->x 0.048 0.018 $this->x++ 0.061 0.032 $this->x-- 0.062 0.032 isset($this->x) 0.069 0.040 empty($this->x) 0.069 0.040 $this->f() 0.059 0.030 $x = Foo::TEST 0.087 0.058 new Foo() 0.183 0.154 $x = TEST 0.049 0.019 $x = $_GET 0.093 0.063 $x = $GLOBALS['v'] 0.083 0.053 $x = $hash['v'] 0.062 0.032 $x = $str[0] 0.059 0.030 $x = $a ?: null 0.066 0.037 $x = $f ?: tmp 0.063 0.033 $x = $f ? $f : $a 0.067 0.038 $x = $f ? $f : tmp 0.068 0.039 ------------------------ Total 2.263
Output for 7.4.4
empty_loop 0.027 func() 0.076 0.049 undef_func() 0.089 0.062 int_func() 0.084 0.057 $x = self::$x 0.107 0.081 self::$x = 0 0.094 0.067 isset(self::$x) 0.107 0.080 empty(self::$x) 0.107 0.080 $x = Foo::$x 0.070 0.043 Foo::$x = 0 0.056 0.029 isset(Foo::$x) 0.072 0.045 empty(Foo::$x) 0.072 0.046 self::f() 0.100 0.073 Foo::f() 0.085 0.058 $x = $this->x 0.064 0.038 $this->x = 0 0.062 0.035 $this->x += 2 0.070 0.043 ++$this->x 0.065 0.038 --$this->x 0.065 0.038 $this->x++ 0.080 0.053 $this->x-- 0.078 0.052 isset($this->x) 0.090 0.063 empty($this->x) 0.097 0.070 $this->f() 0.090 0.063 $x = Foo::TEST 0.110 0.084 new Foo() 0.249 0.222 $x = TEST 0.061 0.034 $x = $_GET 0.122 0.095
Process exited with code 137.
Output for 7.4.3
empty_loop 0.024 func() 0.132 0.109 undef_func() 0.133 0.110 int_func() 0.075 0.051 $x = self::$x 0.137 0.114 self::$x = 0 0.105 0.082 isset(self::$x) 0.126 0.102 empty(self::$x) 0.131 0.107 $x = Foo::$x 0.079 0.055 Foo::$x = 0 0.051 0.027 isset(Foo::$x) 0.066 0.042 empty(Foo::$x) 0.082 0.058 self::f() 0.144 0.120 Foo::f() 0.116 0.092 $x = $this->x 0.064 0.040 $this->x = 0 0.061 0.037 $this->x += 2 0.095 0.071 ++$this->x 0.082 0.058 --$this->x 0.084 0.061 $this->x++ 0.100 0.077 $this->x-- 0.096 0.073 isset($this->x) 0.098 0.074 empty($this->x) 0.104 0.081 $this->f() 0.121 0.097 $x = Foo::TEST 0.095 0.071
Process exited with code 137.
Output for 7.3.33
empty_loop 0.029 func() 0.079 0.050 undef_func() 0.089 0.060 int_func() 0.066 0.037 $x = self::$x 0.088 0.059 self::$x = 0 0.106 0.078 isset(self::$x) 0.094 0.066 empty(self::$x) 0.098 0.070 $x = Foo::$x 0.089 0.060 Foo::$x = 0 0.095 0.067 isset(Foo::$x) 0.075 0.047 empty(Foo::$x) 0.077 0.048 self::f() 0.106 0.078 Foo::f() 0.080 0.052 $x = $this->x 0.076 0.047 $this->x = 0 0.065 0.036 $this->x += 2 0.069 0.040 ++$this->x 0.059 0.030 --$this->x 0.060 0.031 $this->x++ 0.076 0.047 $this->x-- 0.076 0.047 isset($this->x) 0.093 0.064 empty($this->x) 0.096 0.067 $this->f() 0.087 0.058
Process exited with code 137.
Output for 7.3.32
empty_loop 0.029 func() 0.081 0.052 undef_func() 0.089 0.060 int_func() 0.065 0.036 $x = self::$x 0.091 0.062 self::$x = 0 0.107 0.078 isset(self::$x) 0.102 0.073 empty(self::$x) 0.108 0.079 $x = Foo::$x 0.076 0.048 Foo::$x = 0 0.093 0.064 isset(Foo::$x) 0.075 0.047 empty(Foo::$x) 0.077 0.048 self::f() 0.101 0.072 Foo::f() 0.080 0.051 $x = $this->x 0.076 0.047 $this->x = 0 0.065 0.036 $this->x += 2 0.069 0.040 ++$this->x 0.060 0.031 --$this->x 0.060 0.032 $this->x++ 0.076 0.048 $this->x-- 0.076 0.048 isset($this->x) 0.090 0.061 empty($this->x) 0.092 0.063 $this->f() 0.084 0.056
Process exited with code 137.
Output for 7.3.31
empty_loop 0.029 func() 0.079 0.050 undef_func() 0.089 0.060 int_func() 0.068 0.039 $x = self::$x 0.085 0.056 self::$x = 0 0.108 0.079 isset(self::$x) 0.100 0.071 empty(self::$x) 0.103 0.074 $x = Foo::$x 0.077 0.048 Foo::$x = 0 0.092 0.063 isset(Foo::$x) 0.077 0.048 empty(Foo::$x) 0.077 0.048 self::f() 0.099 0.070 Foo::f() 0.081 0.052 $x = $this->x 0.076 0.048 $this->x = 0 0.065 0.036 $this->x += 2 0.067 0.038 ++$this->x 0.059 0.030 --$this->x 0.060 0.031 $this->x++ 0.078 0.049 $this->x-- 0.076 0.047 isset($this->x) 0.090 0.061 empty($this->x) 0.092 0.063 $this->f() 0.085 0.057
Process exited with code 137.
Output for 7.3.30
empty_loop 0.029 func() 0.078 0.049 undef_func() 0.088 0.059 int_func() 0.064 0.035 $x = self::$x 0.092 0.063 self::$x = 0 0.113 0.084 isset(self::$x) 0.103 0.074 empty(self::$x) 0.110 0.081 $x = Foo::$x 0.076 0.047 Foo::$x = 0 0.092 0.063 isset(Foo::$x) 0.075 0.046 empty(Foo::$x) 0.077 0.048 self::f() 0.100 0.071 Foo::f() 0.080 0.051 $x = $this->x 0.076 0.047 $this->x = 0 0.065 0.036 $this->x += 2 0.067 0.038 ++$this->x 0.059 0.030 --$this->x 0.060 0.031 $this->x++ 0.076 0.047 $this->x-- 0.076 0.047 isset($this->x) 0.090 0.061 empty($this->x) 0.091 0.062 $this->f() 0.083 0.054
Process exited with code 137.
Output for 7.3.29
empty_loop 0.038 func() 0.117 0.079 undef_func() 0.142 0.104 int_func() 0.084 0.046 $x = self::$x 0.120 0.082 self::$x = 0 0.134 0.096 isset(self::$x) 0.114 0.076 empty(self::$x) 0.134 0.096 $x = Foo::$x 0.085 0.047 Foo::$x = 0 0.096 0.057 isset(Foo::$x) 0.114 0.076 empty(Foo::$x) 0.135 0.096 self::f() 0.239 0.201 Foo::f() 0.188 0.150 $x = $this->x 0.104 0.066 $this->x = 0 0.105 0.067
Process exited with code 137.
Output for 7.3.28
empty_loop 0.056 func() 0.175 0.119 undef_func() 0.191 0.135 int_func() 0.121 0.065 $x = self::$x 0.172 0.117 self::$x = 0 0.188 0.133 isset(self::$x) 0.173 0.117 empty(self::$x) 0.172 0.116 $x = Foo::$x 0.096 0.041 Foo::$x = 0 0.104 0.048 isset(Foo::$x) 0.126 0.071 empty(Foo::$x) 0.133 0.077 self::f() 0.255 0.199
Process exited with code 137.
Output for 7.3.27
empty_loop 0.038 func() 0.118 0.080 undef_func() 0.129 0.091 int_func() 0.081 0.043 $x = self::$x 0.115 0.076 self::$x = 0 0.114 0.076 isset(self::$x) 0.113 0.075 empty(self::$x) 0.127 0.089 $x = Foo::$x 0.084 0.046 Foo::$x = 0 0.080 0.042 isset(Foo::$x) 0.082 0.044 empty(Foo::$x) 0.099 0.060 self::f() 0.150 0.112 Foo::f() 0.123 0.085 $x = $this->x 0.086 0.048 $this->x = 0 0.065 0.027 $this->x += 2 0.110 0.072 ++$this->x 0.089 0.051 --$this->x 0.093 0.055
Process exited with code 137.
Output for 7.3.26
empty_loop 0.037 func() 0.116 0.078 undef_func() 0.179 0.142 int_func() 0.090 0.053 $x = self::$x 0.114 0.077 self::$x = 0 0.110 0.072 isset(self::$x) 0.114 0.076 empty(self::$x) 0.128 0.091 $x = Foo::$x 0.085 0.047 Foo::$x = 0 0.083 0.045 isset(Foo::$x) 0.082 0.045 empty(Foo::$x) 0.098 0.061 self::f() 0.165 0.128 Foo::f() 0.127 0.089 $x = $this->x 0.084 0.047 $this->x = 0 0.067 0.029 $this->x += 2 0.110 0.072 ++$this->x 0.088 0.050 --$this->x 0.093 0.056
Process exited with code 137.
Output for 7.3.25
empty_loop 0.047 func() 0.279 0.231 undef_func() 0.242 0.195 int_func() 0.100 0.052 $x = self::$x 0.131 0.083 self::$x = 0 0.128 0.081 isset(self::$x) 0.151 0.104 empty(self::$x) 0.181 0.134 $x = Foo::$x 0.093 0.045 Foo::$x = 0 0.083 0.036 isset(Foo::$x) 0.092 0.045 empty(Foo::$x) 0.145 0.097 self::f() 0.170 0.122 Foo::f() 0.129 0.082 $x = $this->x 0.082 0.035 $this->x = 0 0.075 0.028
Process exited with code 137.
Output for 7.3.24
empty_loop 0.043 func() 0.129 0.087 undef_func() 0.129 0.086 int_func() 0.082 0.040 $x = self::$x 0.117 0.074 self::$x = 0 0.112 0.069 isset(self::$x) 0.118 0.075 empty(self::$x) 0.134 0.092 $x = Foo::$x 0.088 0.045 Foo::$x = 0 0.081 0.038 isset(Foo::$x) 0.084 0.042 empty(Foo::$x) 0.097 0.054 self::f() 0.157 0.114 Foo::f() 0.136 0.094 $x = $this->x 0.086 0.043 $this->x = 0 0.115 0.072 $this->x += 2 0.151 0.108 ++$this->x 0.090 0.048
Process exited with code 137.
Output for 7.3.23
empty_loop 0.037 func() 0.121 0.084 undef_func() 0.130 0.093 int_func() 0.086 0.049 $x = self::$x 0.115 0.078 self::$x = 0 0.138 0.101 isset(self::$x) 0.130 0.093 empty(self::$x) 0.146 0.109 $x = Foo::$x 0.080 0.044 Foo::$x = 0 0.088 0.052 isset(Foo::$x) 0.078 0.041 empty(Foo::$x) 0.092 0.055 self::f() 0.162 0.126 Foo::f() 0.133 0.096 $x = $this->x 0.076 0.039 $this->x = 0 0.083 0.047 $this->x += 2 0.116 0.080 ++$this->x 0.104 0.068 --$this->x 0.100 0.063 $this->x++ 0.105 0.069 $this->x-- 0.112 0.076 isset($this->x) 0.114 0.078 empty($this->x) 0.121 0.084
Process exited with code 137.
Output for 7.3.21
empty_loop 0.039 func() 0.127 0.088 undef_func() 0.128 0.089 int_func() 0.095 0.056 $x = self::$x 0.119 0.080 self::$x = 0 0.117 0.077 isset(self::$x) 0.117 0.078 empty(self::$x) 0.129 0.090 $x = Foo::$x 0.084 0.044 Foo::$x = 0 0.081 0.041 isset(Foo::$x) 0.083 0.044 empty(Foo::$x) 0.093 0.054 self::f() 0.158 0.118 Foo::f() 0.128 0.089 $x = $this->x 0.083 0.044 $this->x = 0 0.070 0.030 $this->x += 2 0.116 0.077 ++$this->x 0.090 0.051 --$this->x 0.087 0.048 $this->x++ 0.101 0.062 $this->x-- 0.108 0.069 isset($this->x) 0.116 0.077 empty($this->x) 0.120 0.081
Process exited with code 137.
Output for 7.3.20
empty_loop 0.039 func() 0.120 0.081 undef_func() 0.131 0.092 int_func() 0.088 0.049 $x = self::$x 0.116 0.076 self::$x = 0 0.116 0.077 isset(self::$x) 0.118 0.078 empty(self::$x) 0.131 0.092 $x = Foo::$x 0.085 0.046 Foo::$x = 0 0.119 0.080 isset(Foo::$x) 0.113 0.074 empty(Foo::$x) 0.139 0.100 self::f() 0.217 0.178 Foo::f() 0.182 0.143 $x = $this->x 0.084 0.045 $this->x = 0 0.070 0.030 $this->x += 2 0.115 0.076 ++$this->x 0.092 0.053 --$this->x 0.092 0.053 $this->x++ 0.106 0.066 $this->x-- 0.114 0.074
Process exited with code 137.
Output for 7.3.19
empty_loop 0.041 func() 0.128 0.087 undef_func() 0.198 0.157 int_func() 0.085 0.045 $x = self::$x 0.125 0.084 self::$x = 0 0.116 0.075 isset(self::$x) 0.121 0.080 empty(self::$x) 0.197 0.156 $x = Foo::$x 0.129 0.089 Foo::$x = 0 0.139 0.098 isset(Foo::$x) 0.134 0.093 empty(Foo::$x) 0.144 0.103 self::f() 0.264 0.224 Foo::f() 0.208 0.167 $x = $this->x 0.123 0.082 $this->x = 0 0.110 0.069 $this->x += 2 0.208 0.167
Process exited with code 137.
Output for 7.3.18
empty_loop 0.048 func() 0.124 0.076 undef_func() 0.166 0.118 int_func() 0.087 0.039 $x = self::$x 0.131 0.083 self::$x = 0 0.122 0.075 isset(self::$x) 0.113 0.066 empty(self::$x) 0.127 0.079 $x = Foo::$x 0.083 0.035 Foo::$x = 0 0.084 0.036 isset(Foo::$x) 0.088 0.041 empty(Foo::$x) 0.097 0.049 self::f() 0.158 0.110 Foo::f() 0.127 0.080 $x = $this->x 0.078 0.031 $this->x = 0 0.069 0.021 $this->x += 2 0.108 0.061 ++$this->x 0.096 0.048 --$this->x 0.092 0.044 $this->x++ 0.103 0.056 $this->x-- 0.102 0.055 isset($this->x) 0.108 0.060 empty($this->x) 0.128 0.080
Process exited with code 137.
Output for 7.3.17
empty_loop 0.066 func() 0.190 0.124 undef_func() 0.194 0.128 int_func() 0.134 0.068 $x = self::$x 0.209 0.143 self::$x = 0 0.162 0.096 isset(self::$x) 0.182 0.116 empty(self::$x) 0.152 0.086 $x = Foo::$x 0.108 0.042 Foo::$x = 0 0.125 0.059 isset(Foo::$x) 0.128 0.062 empty(Foo::$x) 0.110 0.044 self::f() 0.233 0.168 Foo::f() 0.139 0.073 $x = $this->x 0.084 0.019 $this->x = 0 0.074 0.008 $this->x += 2 0.132 0.066
Process exited with code 137.
Output for 7.3.16
empty_loop 0.044 func() 0.129 0.085 undef_func() 0.134 0.091 int_func() 0.099 0.055 $x = self::$x 0.124 0.081 self::$x = 0 0.120 0.077 isset(self::$x) 0.119 0.075 empty(self::$x) 0.125 0.082 $x = Foo::$x 0.085 0.041 Foo::$x = 0 0.082 0.039 isset(Foo::$x) 0.082 0.038 empty(Foo::$x) 0.087 0.044 self::f() 0.156 0.113 Foo::f() 0.127 0.083 $x = $this->x 0.077 0.033 $this->x = 0 0.067 0.023 $this->x += 2 0.115 0.071 ++$this->x 0.088 0.044 --$this->x 0.092 0.048 $this->x++ 0.112 0.068 $this->x-- 0.106 0.062 isset($this->x) 0.112 0.068 empty($this->x) 0.183 0.140
Process exited with code 137.
Output for 7.2.33
empty_loop 0.041 func() 0.147 0.106 undef_func() 0.167 0.126 int_func() 0.092 0.051 $x = self::$x 0.127 0.086 self::$x = 0 0.122 0.081 isset(self::$x) 0.127 0.086 empty(self::$x) 0.141 0.101 $x = Foo::$x 0.096 0.055 Foo::$x = 0 0.103 0.062 isset(Foo::$x) 0.101 0.060 empty(Foo::$x) 0.130 0.089 self::f() 0.179 0.138 Foo::f() 0.145 0.104 $x = $this->x 0.094 0.053 $this->x = 0 0.069 0.028 $this->x += 2 0.131 0.090 ++$this->x 0.098 0.057 --$this->x 0.093 0.052 $this->x++ 0.118 0.077 $this->x-- 0.110 0.070
Process exited with code 137.
Output for 7.2.32
empty_loop 0.045 func() 0.160 0.115 undef_func() 0.194 0.149 int_func() 0.097 0.052 $x = self::$x 0.138 0.093 self::$x = 0 0.136 0.091 isset(self::$x) 0.212 0.167 empty(self::$x) 0.226 0.181 $x = Foo::$x 0.139 0.094 Foo::$x = 0 0.110 0.065 isset(Foo::$x) 0.099 0.054 empty(Foo::$x) 0.104 0.060 self::f() 0.182 0.137 Foo::f() 0.162 0.117 $x = $this->x 0.098 0.053 $this->x = 0 0.075 0.030 $this->x += 2 0.146 0.101 ++$this->x 0.109 0.064
Process exited with code 137.
Output for 7.2.31
empty_loop 0.046 func() 0.187 0.141 undef_func() 0.265 0.220 int_func() 0.126 0.080 $x = self::$x 0.204 0.159 self::$x = 0 0.203 0.158 isset(self::$x) 0.196 0.151 empty(self::$x) 0.210 0.165 $x = Foo::$x 0.165 0.119 Foo::$x = 0 0.145 0.100 isset(Foo::$x) 0.134 0.088 empty(Foo::$x) 0.133 0.088 self::f() 0.228 0.182 Foo::f() 0.194 0.149
Process exited with code 137.
Output for 7.2.30
empty_loop 0.041 func() 0.138 0.097 undef_func() 0.151 0.110 int_func() 0.094 0.053 $x = self::$x 0.128 0.087 self::$x = 0 0.123 0.082 isset(self::$x) 0.124 0.083 empty(self::$x) 0.137 0.096 $x = Foo::$x 0.092 0.051 Foo::$x = 0 0.091 0.050 isset(Foo::$x) 0.091 0.050 empty(Foo::$x) 0.098 0.057 self::f() 0.180 0.139 Foo::f() 0.142 0.101 $x = $this->x 0.096 0.055 $this->x = 0 0.075 0.034 $this->x += 2 0.135 0.094 ++$this->x 0.097 0.056 --$this->x 0.117 0.076 $this->x++ 0.117 0.076 $this->x-- 0.111 0.070
Process exited with code 137.
Output for 7.2.29
empty_loop 0.041 func() 0.140 0.099 undef_func() 0.151 0.110 int_func() 0.091 0.050 $x = self::$x 0.129 0.087 self::$x = 0 0.125 0.084 isset(self::$x) 0.125 0.084 empty(self::$x) 0.136 0.095 $x = Foo::$x 0.093 0.052 Foo::$x = 0 0.096 0.054 isset(Foo::$x) 0.088 0.047 empty(Foo::$x) 0.100 0.058 self::f() 0.176 0.134 Foo::f() 0.141 0.100 $x = $this->x 0.090 0.048 $this->x = 0 0.069 0.028 $this->x += 2 0.134 0.093 ++$this->x 0.099 0.058 --$this->x 0.105 0.063 $this->x++ 0.120 0.079 $this->x-- 0.109 0.068 isset($this->x) 0.119 0.078
Process exited with code 137.
Output for 7.2.10
empty_loop 0.049 func() 0.137 0.088 undef_func() 0.249 0.201 int_func() 0.095 0.047 $x = self::$x 0.226 0.178 self::$x = 0 0.246 0.198 isset(self::$x) 0.227 0.178 empty(self::$x) 0.272 0.224 $x = Foo::$x 0.096 0.047 Foo::$x = 0 0.227 0.179 isset(Foo::$x) 0.097 0.049 empty(Foo::$x) 0.155 0.106 self::f() 0.228 0.180
Process exited with code 137.
Output for 7.1.22
empty_loop 0.053 func() 0.170 0.117 undef_func() 0.166 0.113 int_func() 0.145 0.092 $x = self::$x 0.218 0.165 self::$x = 0 0.295 0.242 isset(self::$x) 0.204 0.151 empty(self::$x) 0.161 0.108 $x = Foo::$x 0.110 0.057 Foo::$x = 0 0.097 0.044 isset(Foo::$x) 0.080 0.027 empty(Foo::$x) 0.121 0.069 self::f() 0.274 0.221 Foo::f() 0.210 0.158
Process exited with code 137.
Output for 5.6.38
empty_loop 0.185 func() 0.520 0.335 undef_func() 0.801 0.616 int_func() 0.646 0.461
Process exited with code 137.

preferences:
156.84 ms | 401 KiB | 143 Q