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 = 50000; $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.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.000 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 8.3.5
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.036
Output for 8.3.4
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.027
Output for 8.3.3
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.034
Output for 8.3.2
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.000 Foo::f() 0.000 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.3.1
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.000 Foo::f() 0.000 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.000 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.3.0
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.000 Foo::f() 0.000 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.000 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.2.18
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.033
Output for 8.2.17
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.036
Output for 8.2.16
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 8.2.15
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.000 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.016
Output for 8.2.14
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.000 0.000 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.2.13
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.000 0.000 Foo::f() 0.000 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.2.12
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.000 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.2.11
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.2.10
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.2.9
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.2.8
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.2.7
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.001 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.019
Output for 8.2.6
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.020
Output for 8.2.5
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.021
Output for 8.2.1, 8.2.4
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.001 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.2.3
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.020
Output for 8.2.2
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.023
Output for 8.2.0
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.1.28
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.029
Output for 8.1.25, 8.1.27
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.000 0.000 Foo::f() 0.000 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.1.26
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.000 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.000 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.000 0.000 Foo::f() 0.000 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.000 0.000 $x = Foo::TEST 0.000 0.000 new Foo() 0.001 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.000 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.015
Output for 8.1.24
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.000 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.029
Output for 8.1.23
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.018
Output for 8.1.22
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.21
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.20
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.1.19
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.001 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.18
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.17
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.16
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.018
Output for 8.1.15
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.019
Output for 8.1.14
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.001 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.13
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.001 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.12
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.11
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.019
Output for 8.1.10
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.9
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.019
Output for 8.1.8
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.000 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.019
Output for 8.1.7
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.000 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.6
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.0.19, 8.1.5
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.1.4
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.1.3
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.029
Output for 8.1.2
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.1.1
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.1.0
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.000 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.029
Output for 8.0.30
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.0.25, 8.0.29
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.28
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.019
Output for 8.0.27
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.26
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.001 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.24
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.23
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.023
Output for 8.0.22
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.21
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.20
empty_loop 0.000 func() 0.000 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.000 0.000 $this->x-- 0.000 0.000 isset($this->x) 0.000 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.021
Output for 8.0.18
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.032
Output for 8.0.17
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 8.0.10, 8.0.16
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.0.15
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.029
Output for 8.0.14
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.005 0.005 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.040
Output for 8.0.13
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.029
Output for 8.0.12
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.033
Output for 8.0.11
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.0.9
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.029
Output for 8.0.8
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.033
Output for 8.0.7
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.0.6
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.030
Output for 8.0.5
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 8.0.3
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.027
Output for 8.0.2
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.035
Output for 8.0.1
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.028
Output for 8.0.0
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.002 self::$x = 0 0.007 0.007 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.002 0.002 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.002 0.002 empty($this->x) 0.001 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.053
Output for 7.4.33
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.021
Output for 7.4.32
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.000 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.000 0.000 $x = $a ?: null 0.000 0.000 $x = $f ?: tmp 0.000 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.021
Output for 7.4.30
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.000 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.000 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.000 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.000 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.000 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.023
Output for 7.4.29
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.033
Output for 7.4.27 - 7.4.28
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.030
Output for 7.4.26
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.030
Output for 7.4.25
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 7.4.24
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.030
Output for 7.4.23
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.030
Output for 7.4.22
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.043
Output for 7.4.21
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.036
Output for 7.4.20
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.030
Output for 7.4.19
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.002 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 7.4.16
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.003 0.003 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.4.15
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.038
Output for 7.4.14
empty_loop 0.000 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.002 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.002 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.055
Output for 7.4.13
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.038
Output for 7.4.12
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.003 0.003 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.002 0.001 $x = $this->x 0.004 0.003 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.003 0.003 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.004 0.004 ------------------------ Total 0.047
Output for 7.4.11
empty_loop 0.000 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.002 0.002 self::$x = 0 0.002 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.005 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.004 0.004 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.002 0.002 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.062
Output for 7.4.10
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.003 0.003 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.045
Output for 7.4.9
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.036
Output for 7.4.8
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.002 int_func() 0.001 0.001 $x = self::$x 0.002 0.002 self::$x = 0 0.002 0.002 isset(self::$x) 0.002 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.044
Output for 7.4.7
empty_loop 0.001 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.002 isset(self::$x) 0.002 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.039
Output for 7.4.6
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.035
Output for 7.4.5
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.000 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.000 Foo::f() 0.001 0.000 $x = $this->x 0.000 0.000 $this->x = 0 0.000 0.000 $this->x += 2 0.000 0.000 ++$this->x 0.000 0.000 --$this->x 0.000 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.002 0.001 $x = TEST 0.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.000 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.023
Output for 7.4.4
empty_loop 0.001 func() 0.001 0.000 undef_func() 0.001 0.000 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.034
Output for 7.4.3
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.038
Output for 7.4.1
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.002 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.041
Output for 7.4.0
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.038
Output for 7.3.33
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.032
Output for 7.3.32
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 7.3.31
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 7.3.30
empty_loop 0.000 func() 0.001 0.000 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 7.3.29
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.042
Output for 7.3.28
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.041
Output for 7.3.27
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.041
Output for 7.3.26
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.002 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.046
Output for 7.3.24
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.044
Output for 7.3.23
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.039
Output for 7.3.21
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.002 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.041
Output for 7.3.20
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.000 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.003 0.002 empty(Foo::$x) 0.001 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.003 0.002 empty($this->x) 0.001 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.006 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.008 0.007 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.068
Output for 7.3.19
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.004 0.003 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.001 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.042
Output for 7.3.18
empty_loop 0.000 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.003 0.003 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.044
Output for 7.3.17
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.041
Output for 7.3.16
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.039
Output for 7.3.13
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.050
Output for 7.3.12
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.049
Output for 7.3.11
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.039
Output for 7.3.10
empty_loop 0.001 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.035
Output for 7.3.9
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.005 0.004 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.043
Output for 7.3.8
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.034
Output for 7.3.7
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.033
Output for 7.3.6
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.016 0.016 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.053
Output for 7.3.5
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.005 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.043
Output for 7.3.4
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.032
Output for 7.3.3
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.034
Output for 7.3.2
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.001 0.000 int_func() 0.001 0.001 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.000 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.039
Output for 7.3.1
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.035
Output for 7.3.0
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.036
Output for 7.2.33
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.002 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.001 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.046
Output for 7.2.32
empty_loop 0.000 func() 0.002 0.001 undef_func() 0.002 0.002 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.002 $this->f() 0.002 0.002 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.004 $x = TEST 0.001 0.001 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.049
Output for 7.2.31
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.002 0.001 $x = self::$x 0.002 0.002 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.002 0.002 $this->x++ 0.001 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.003 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.002 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.052
Output for 7.2.30
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 0.002 int_func() 0.001 0.001 $x = self::$x 0.002 0.002 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.002 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.054
Output for 7.2.29
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.002 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.001 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.045
Output for 7.2.26
empty_loop 0.000 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.005 0.005 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.053
Output for 7.2.25
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.039
Output for 7.2.24
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.037
Output for 7.2.23
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.036
Output for 7.2.22
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.000 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.043
Output for 7.2.21
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 0.002 int_func() 0.001 0.001 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.038
Output for 7.2.20
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 0.002 int_func() 0.002 0.001 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.038
Output for 7.2.19
empty_loop 0.035 func() 0.002 -0.033 undef_func() 0.003 -0.033 int_func() 0.003 -0.032 $x = self::$x 0.003 -0.033 self::$x = 0 0.002 -0.034 isset(self::$x) 0.001 -0.035 empty(self::$x) 0.001 -0.035 $x = Foo::$x 0.001 -0.035 Foo::$x = 0 0.001 -0.035 isset(Foo::$x) 0.001 -0.035 empty(Foo::$x) 0.001 -0.035 self::f() 0.001 -0.034 Foo::f() 0.001 -0.034 $x = $this->x 0.001 -0.035 $this->x = 0 0.001 -0.035 $this->x += 2 0.001 -0.034 ++$this->x 0.001 -0.035 --$this->x 0.001 -0.035 $this->x++ 0.001 -0.034 $this->x-- 0.001 -0.035 isset($this->x) 0.001 -0.034 empty($this->x) 0.001 -0.034 $this->f() 0.001 -0.034 $x = Foo::TEST 0.001 -0.034 new Foo() 0.003 -0.033 $x = TEST 0.001 -0.035 $x = $_GET 0.001 -0.034 $x = $GLOBALS['v'] 0.001 -0.034 $x = $hash['v'] 0.002 -0.034 $x = $str[0] 0.001 -0.035 $x = $a ?: null 0.001 -0.035 $x = $f ?: tmp 0.001 -0.035 $x = $f ? $f : $a 0.001 -0.034 $x = $f ? $f : tmp 0.001 -0.035 ------------------------ Total 0.078
Output for 7.2.18
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.037
Output for 7.2.17
empty_loop 0.001 func() 0.001 0.001 undef_func() 0.001 0.000 int_func() 0.001 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.000 $x = Foo::TEST 0.001 0.000 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.036
Output for 7.2.16
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.003 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.039
Output for 7.2.15
empty_loop 0.000 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.2.14
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.035
Output for 7.2.13
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.004 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.044
Output for 7.2.12
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.035
Output for 7.2.11
empty_loop 0.024 func() 0.003 -0.022 undef_func() 0.003 -0.021 int_func() 0.003 -0.021 $x = self::$x 0.001 -0.023 self::$x = 0 0.001 -0.023 isset(self::$x) 0.001 -0.023 empty(self::$x) 0.001 -0.023 $x = Foo::$x 0.001 -0.023 Foo::$x = 0 0.001 -0.023 isset(Foo::$x) 0.001 -0.023 empty(Foo::$x) 0.001 -0.023 self::f() 0.001 -0.023 Foo::f() 0.001 -0.023 $x = $this->x 0.001 -0.023 $this->x = 0 0.001 -0.023 $this->x += 2 0.001 -0.023 ++$this->x 0.001 -0.023 --$this->x 0.001 -0.023 $this->x++ 0.001 -0.023 $this->x-- 0.001 -0.023 isset($this->x) 0.001 -0.023 empty($this->x) 0.001 -0.023 $this->f() 0.001 -0.023 $x = Foo::TEST 0.001 -0.023 new Foo() 0.003 -0.021 $x = TEST 0.001 -0.023 $x = $_GET 0.001 -0.023 $x = $GLOBALS['v'] 0.001 -0.023 $x = $hash['v'] 0.001 -0.023 $x = $str[0] 0.001 -0.023 $x = $a ?: null 0.001 -0.023 $x = $f ?: tmp 0.001 -0.023 $x = $f ? $f : $a 0.001 -0.023 $x = $f ? $f : tmp 0.001 -0.023 ------------------------ Total 0.065
Output for 7.2.10
empty_loop 0.001 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.2.9
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.2.8
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.036
Output for 7.2.7
empty_loop 0.000 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.038
Output for 7.2.6
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.011 0.010 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.001 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.048
Output for 7.2.5
empty_loop 0.019 func() 0.001 -0.018 undef_func() 0.001 -0.018 int_func() 0.001 -0.018 $x = self::$x 0.001 -0.018 self::$x = 0 0.001 -0.018 isset(self::$x) 0.001 -0.018 empty(self::$x) 0.001 -0.018 $x = Foo::$x 0.001 -0.018 Foo::$x = 0 0.001 -0.018 isset(Foo::$x) 0.001 -0.018 empty(Foo::$x) 0.001 -0.018 self::f() 0.002 -0.017 Foo::f() 0.001 -0.018 $x = $this->x 0.001 -0.018 $this->x = 0 0.001 -0.018 $this->x += 2 0.001 -0.018 ++$this->x 0.001 -0.018 --$this->x 0.001 -0.018 $this->x++ 0.001 -0.018 $this->x-- 0.001 -0.018 isset($this->x) 0.001 -0.018 empty($this->x) 0.001 -0.018 $this->f() 0.002 -0.017 $x = Foo::TEST 0.001 -0.017 new Foo() 0.005 -0.014 $x = TEST 0.001 -0.018 $x = $_GET 0.001 -0.017 $x = $GLOBALS['v'] 0.001 -0.017 $x = $hash['v'] 0.001 -0.017 $x = $str[0] 0.001 -0.018 $x = $a ?: null 0.001 -0.018 $x = $f ?: tmp 0.001 -0.018 $x = $f ? $f : $a 0.001 -0.018 $x = $f ? $f : tmp 0.001 -0.018 ------------------------ Total 0.058
Output for 7.2.4
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 0.001 int_func() 0.001 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.2.3
empty_loop 0.001 func() 0.001 0.001 undef_func() 0.001 0.000 int_func() 0.001 0.000 $x = self::$x 0.001 0.000 self::$x = 0 0.001 0.000 isset(self::$x) 0.001 0.000 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.000 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.001 0.000 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.2.2
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.036
Output for 7.2.1
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.002 0.001 int_func() 0.002 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.000 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.000 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.000 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.001 0.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.2.0
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.001 int_func() 0.001 0.001 $x = self::$x 0.001 0.001 self::$x = 0 0.001 0.001 isset(self::$x) 0.001 0.001 empty(self::$x) 0.001 0.001 $x = Foo::$x 0.001 0.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.001 0.001 Foo::f() 0.001 0.001 $x = $this->x 0.001 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.001 isset($this->x) 0.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.003 0.002 $x = TEST 0.001 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.001 0.001 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 0.000 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.035
Output for 7.1.33
empty_loop 0.001 func() 0.005 0.003 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.001 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.003 0.001 new Foo() 0.006 0.004 $x = TEST 0.002 0.000 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.003 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.087
Output for 7.1.32
empty_loop 0.026 func() 0.006 -0.020 undef_func() 0.007 -0.019 int_func() 0.004 -0.022 $x = self::$x 0.002 -0.023 self::$x = 0 0.002 -0.023 isset(self::$x) 0.002 -0.023 empty(self::$x) 0.002 -0.023 $x = Foo::$x 0.002 -0.024 Foo::$x = 0 0.002 -0.023 isset(Foo::$x) 0.002 -0.024 empty(Foo::$x) 0.002 -0.024 self::f() 0.003 -0.023 Foo::f() 0.003 -0.023 $x = $this->x 0.002 -0.024 $this->x = 0 0.001 -0.024 $this->x += 2 0.002 -0.024 ++$this->x 0.002 -0.024 --$this->x 0.002 -0.024 $this->x++ 0.002 -0.023 $this->x-- 0.002 -0.023 isset($this->x) 0.002 -0.023 empty($this->x) 0.002 -0.023 $this->f() 0.003 -0.023 $x = Foo::TEST 0.003 -0.023 new Foo() 0.006 -0.020 $x = TEST 0.002 -0.024 $x = $_GET 0.002 -0.023 $x = $GLOBALS['v'] 0.003 -0.023 $x = $hash['v'] 0.003 -0.023 $x = $str[0] 0.003 -0.023 $x = $a ?: null 0.002 -0.023 $x = $f ?: tmp 0.003 -0.023 $x = $f ? $f : $a 0.002 -0.023 $x = $f ? $f : tmp 0.003 -0.023 ------------------------ Total 0.116
Output for 7.1.31
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.085
Output for 7.1.30
empty_loop 0.022 func() 0.004 -0.017 undef_func() 0.005 -0.017 int_func() 0.004 -0.018 $x = self::$x 0.003 -0.019 self::$x = 0 0.003 -0.018 isset(self::$x) 0.003 -0.018 empty(self::$x) 0.003 -0.018 $x = Foo::$x 0.003 -0.019 Foo::$x = 0 0.003 -0.019 isset(Foo::$x) 0.002 -0.020 empty(Foo::$x) 0.002 -0.020 self::f() 0.003 -0.019 Foo::f() 0.002 -0.019 $x = $this->x 0.002 -0.020 $this->x = 0 0.002 -0.020 $this->x += 2 0.002 -0.020 ++$this->x 0.002 -0.020 --$this->x 0.002 -0.020 $this->x++ 0.002 -0.020 $this->x-- 0.002 -0.020 isset($this->x) 0.002 -0.020 empty($this->x) 0.002 -0.019 $this->f() 0.003 -0.019 $x = Foo::TEST 0.003 -0.019 new Foo() 0.006 -0.016 $x = TEST 0.002 -0.020 $x = $_GET 0.003 -0.019 $x = $GLOBALS['v'] 0.003 -0.019 $x = $hash['v'] 0.002 -0.019 $x = $str[0] 0.002 -0.019 $x = $a ?: null 0.002 -0.020 $x = $f ?: tmp 0.003 -0.019 $x = $f ? $f : $a 0.002 -0.019 $x = $f ? $f : tmp 0.003 -0.019 ------------------------ Total 0.113
Output for 7.1.29
empty_loop 0.001 func() 0.025 0.024 undef_func() 0.006 0.005 int_func() 0.005 0.003 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.004 0.002 new Foo() 0.007 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.003 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.118
Output for 7.1.28
empty_loop 0.010 func() 0.003 -0.006 undef_func() 0.003 -0.006 int_func() 0.003 -0.007 $x = self::$x 0.002 -0.007 self::$x = 0 0.002 -0.007 isset(self::$x) 0.002 -0.007 empty(self::$x) 0.002 -0.007 $x = Foo::$x 0.002 -0.008 Foo::$x = 0 0.002 -0.007 isset(Foo::$x) 0.002 -0.008 empty(Foo::$x) 0.002 -0.008 self::f() 0.003 -0.007 Foo::f() 0.003 -0.007 $x = $this->x 0.002 -0.008 $this->x = 0 0.001 -0.008 $this->x += 2 0.002 -0.008 ++$this->x 0.002 -0.008 --$this->x 0.002 -0.008 $this->x++ 0.002 -0.007 $this->x-- 0.002 -0.008 isset($this->x) 0.002 -0.007 empty($this->x) 0.002 -0.007 $this->f() 0.003 -0.007 $x = Foo::TEST 0.003 -0.007 new Foo() 0.006 -0.003 $x = TEST 0.002 -0.008 $x = $_GET 0.002 -0.007 $x = $GLOBALS['v'] 0.003 -0.007 $x = $hash['v'] 0.002 -0.007 $x = $str[0] 0.002 -0.007 $x = $a ?: null 0.002 -0.007 $x = $f ?: tmp 0.003 -0.007 $x = $f ? $f : $a 0.002 -0.007 $x = $f ? $f : tmp 0.003 -0.007 ------------------------ Total 0.093
Output for 7.1.27
empty_loop 0.021 func() 0.006 -0.015 undef_func() 0.006 -0.015 int_func() 0.004 -0.017 $x = self::$x 0.002 -0.018 self::$x = 0 0.002 -0.018 isset(self::$x) 0.002 -0.018 empty(self::$x) 0.002 -0.018 $x = Foo::$x 0.002 -0.018 Foo::$x = 0 0.002 -0.018 isset(Foo::$x) 0.002 -0.019 empty(Foo::$x) 0.002 -0.018 self::f() 0.003 -0.017 Foo::f() 0.003 -0.018 $x = $this->x 0.002 -0.019 $this->x = 0 0.002 -0.019 $this->x += 2 0.002 -0.019 ++$this->x 0.002 -0.019 --$this->x 0.002 -0.019 $this->x++ 0.002 -0.018 $this->x-- 0.002 -0.018 isset($this->x) 0.002 -0.018 empty($this->x) 0.003 -0.018 $this->f() 0.003 -0.018 $x = Foo::TEST 0.003 -0.018 new Foo() 0.007 -0.014 $x = TEST 0.002 -0.019 $x = $_GET 0.003 -0.018 $x = $GLOBALS['v'] 0.003 -0.017 $x = $hash['v'] 0.003 -0.018 $x = $str[0] 0.003 -0.018 $x = $a ?: null 0.002 -0.018 $x = $f ?: tmp 0.003 -0.018 $x = $f ? $f : $a 0.003 -0.018 $x = $f ? $f : tmp 0.003 -0.018 ------------------------ Total 0.117
Output for 7.1.26
empty_loop 0.012 func() 0.003 -0.009 undef_func() 0.003 -0.009 int_func() 0.002 -0.010 $x = self::$x 0.002 -0.010 self::$x = 0 0.002 -0.010 isset(self::$x) 0.002 -0.010 empty(self::$x) 0.002 -0.010 $x = Foo::$x 0.002 -0.010 Foo::$x = 0 0.002 -0.010 isset(Foo::$x) 0.002 -0.010 empty(Foo::$x) 0.002 -0.010 self::f() 0.003 -0.010 Foo::f() 0.002 -0.010 $x = $this->x 0.002 -0.011 $this->x = 0 0.001 -0.011 $this->x += 2 0.002 -0.011 ++$this->x 0.002 -0.011 --$this->x 0.001 -0.011 $this->x++ 0.002 -0.010 $this->x-- 0.002 -0.010 isset($this->x) 0.002 -0.010 empty($this->x) 0.002 -0.010 $this->f() 0.003 -0.010 $x = Foo::TEST 0.003 -0.009 new Foo() 0.006 -0.006 $x = TEST 0.002 -0.010 $x = $_GET 0.003 -0.009 $x = $GLOBALS['v'] 0.004 -0.008 $x = $hash['v'] 0.002 -0.010 $x = $str[0] 0.003 -0.010 $x = $a ?: null 0.002 -0.010 $x = $f ?: tmp 0.003 -0.010 $x = $f ? $f : $a 0.002 -0.010 $x = $f ? $f : tmp 0.003 -0.009 ------------------------ Total 0.096
Output for 7.1.25
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.003 0.002 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.003 0.002 empty(Foo::$x) 0.003 0.002 self::f() 0.003 0.003 Foo::f() 0.004 0.003 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.002 $this->x-- 0.003 0.002 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.002 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.007 0.007 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.004 0.003 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.096
Output for 7.1.24
empty_loop 0.014 func() 0.005 -0.009 undef_func() 0.006 -0.009 int_func() 0.005 -0.010 $x = self::$x 0.002 -0.012 self::$x = 0 0.002 -0.012 isset(self::$x) 0.002 -0.012 empty(self::$x) 0.002 -0.012 $x = Foo::$x 0.002 -0.012 Foo::$x = 0 0.002 -0.012 isset(Foo::$x) 0.002 -0.012 empty(Foo::$x) 0.002 -0.012 self::f() 0.003 -0.011 Foo::f() 0.003 -0.012 $x = $this->x 0.002 -0.012 $this->x = 0 0.001 -0.013 $this->x += 2 0.002 -0.012 ++$this->x 0.002 -0.013 --$this->x 0.001 -0.013 $this->x++ 0.002 -0.012 $this->x-- 0.002 -0.012 isset($this->x) 0.002 -0.012 empty($this->x) 0.002 -0.012 $this->f() 0.003 -0.012 $x = Foo::TEST 0.003 -0.011 new Foo() 0.006 -0.008 $x = TEST 0.002 -0.012 $x = $_GET 0.003 -0.012 $x = $GLOBALS['v'] 0.003 -0.011 $x = $hash['v'] 0.002 -0.012 $x = $str[0] 0.003 -0.012 $x = $a ?: null 0.002 -0.012 $x = $f ?: tmp 0.003 -0.012 $x = $f ? $f : $a 0.003 -0.012 $x = $f ? $f : tmp 0.003 -0.012 ------------------------ Total 0.103
Output for 7.1.23
empty_loop 0.019 func() 0.004 -0.015 undef_func() 0.004 -0.015 int_func() 0.002 -0.017 $x = self::$x 0.002 -0.017 self::$x = 0 0.002 -0.017 isset(self::$x) 0.002 -0.017 empty(self::$x) 0.002 -0.017 $x = Foo::$x 0.002 -0.017 Foo::$x = 0 0.002 -0.017 isset(Foo::$x) 0.002 -0.017 empty(Foo::$x) 0.002 -0.017 self::f() 0.004 -0.015 Foo::f() 0.003 -0.016 $x = $this->x 0.002 -0.017 $this->x = 0 0.002 -0.018 $this->x += 2 0.002 -0.017 ++$this->x 0.002 -0.017 --$this->x 0.002 -0.017 $this->x++ 0.002 -0.017 $this->x-- 0.002 -0.017 isset($this->x) 0.002 -0.017 empty($this->x) 0.003 -0.016 $this->f() 0.003 -0.016 $x = Foo::TEST 0.003 -0.016 new Foo() 0.007 -0.012 $x = TEST 0.002 -0.017 $x = $_GET 0.003 -0.016 $x = $GLOBALS['v'] 0.003 -0.016 $x = $hash['v'] 0.003 -0.016 $x = $str[0] 0.003 -0.016 $x = $a ?: null 0.003 -0.016 $x = $f ?: tmp 0.003 -0.016 $x = $f ? $f : $a 0.003 -0.016 $x = $f ? $f : tmp 0.003 -0.016 ------------------------ Total 0.113
Output for 7.1.22
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $x = self::$x 0.002 0.002 self::$x = 0 0.002 0.002 isset(self::$x) 0.002 0.002 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.002 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.083
Output for 7.1.21
empty_loop 0.026 func() 0.007 -0.019 undef_func() 0.007 -0.019 int_func() 0.004 -0.022 $x = self::$x 0.002 -0.024 self::$x = 0 0.002 -0.024 isset(self::$x) 0.002 -0.024 empty(self::$x) 0.002 -0.024 $x = Foo::$x 0.002 -0.024 Foo::$x = 0 0.002 -0.024 isset(Foo::$x) 0.002 -0.024 empty(Foo::$x) 0.002 -0.024 self::f() 0.003 -0.023 Foo::f() 0.003 -0.024 $x = $this->x 0.002 -0.024 $this->x = 0 0.001 -0.025 $this->x += 2 0.002 -0.024 ++$this->x 0.002 -0.024 --$this->x 0.001 -0.025 $this->x++ 0.002 -0.024 $this->x-- 0.002 -0.024 isset($this->x) 0.002 -0.024 empty($this->x) 0.002 -0.024 $this->f() 0.003 -0.023 $x = Foo::TEST 0.003 -0.023 new Foo() 0.006 -0.020 $x = TEST 0.002 -0.024 $x = $_GET 0.003 -0.023 $x = $GLOBALS['v'] 0.003 -0.023 $x = $hash['v'] 0.002 -0.024 $x = $str[0] 0.002 -0.024 $x = $a ?: null 0.002 -0.024 $x = $f ?: tmp 0.003 -0.023 $x = $f ? $f : $a 0.002 -0.024 $x = $f ? $f : tmp 0.003 -0.023 ------------------------ Total 0.118
Output for 7.1.20
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.002 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.002 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.002 0.002 ------------------------ Total 0.082
Output for 7.1.19
empty_loop 0.001 func() 0.004 0.002 undef_func() 0.003 0.002 int_func() 0.003 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.036 0.035 $x = $a ?: null 0.003 0.002 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.003 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.125
Output for 7.1.18
empty_loop 0.022 func() 0.005 -0.017 undef_func() 0.005 -0.017 int_func() 0.003 -0.019 $x = self::$x 0.002 -0.019 self::$x = 0 0.002 -0.019 isset(self::$x) 0.002 -0.019 empty(self::$x) 0.002 -0.019 $x = Foo::$x 0.002 -0.020 Foo::$x = 0 0.002 -0.020 isset(Foo::$x) 0.002 -0.020 empty(Foo::$x) 0.002 -0.020 self::f() 0.003 -0.019 Foo::f() 0.003 -0.019 $x = $this->x 0.002 -0.020 $this->x = 0 0.001 -0.020 $this->x += 2 0.002 -0.020 ++$this->x 0.002 -0.020 --$this->x 0.002 -0.020 $this->x++ 0.002 -0.020 $this->x-- 0.002 -0.019 isset($this->x) 0.002 -0.019 empty($this->x) 0.002 -0.019 $this->f() 0.003 -0.019 $x = Foo::TEST 0.003 -0.019 new Foo() 0.006 -0.016 $x = TEST 0.002 -0.020 $x = $_GET 0.002 -0.019 $x = $GLOBALS['v'] 0.003 -0.019 $x = $hash['v'] 0.002 -0.019 $x = $str[0] 0.003 -0.019 $x = $a ?: null 0.002 -0.020 $x = $f ?: tmp 0.003 -0.019 $x = $f ? $f : $a 0.002 -0.019 $x = $f ? $f : tmp 0.003 -0.019 ------------------------ Total 0.108
Output for 7.1.17
empty_loop 0.038 func() 0.008 -0.030 undef_func() 0.006 -0.032 int_func() 0.002 -0.036 $x = self::$x 0.002 -0.036 self::$x = 0 0.002 -0.036 isset(self::$x) 0.002 -0.036 empty(self::$x) 0.002 -0.036 $x = Foo::$x 0.002 -0.036 Foo::$x = 0 0.002 -0.036 isset(Foo::$x) 0.002 -0.036 empty(Foo::$x) 0.002 -0.036 self::f() 0.003 -0.035 Foo::f() 0.004 -0.034 $x = $this->x 0.003 -0.035 $this->x = 0 0.002 -0.036 $this->x += 2 0.003 -0.035 ++$this->x 0.002 -0.036 --$this->x 0.002 -0.036 $this->x++ 0.003 -0.035 $this->x-- 0.003 -0.035 isset($this->x) 0.003 -0.035 empty($this->x) 0.003 -0.035 $this->f() 0.004 -0.034 $x = Foo::TEST 0.004 -0.034 new Foo() 0.009 -0.029 $x = TEST 0.003 -0.036 $x = $_GET 0.003 -0.035 $x = $GLOBALS['v'] 0.004 -0.034 $x = $hash['v'] 0.004 -0.035 $x = $str[0] 0.004 -0.035 $x = $a ?: null 0.003 -0.035 $x = $f ?: tmp 0.004 -0.035 $x = $f ? $f : $a 0.003 -0.035 $x = $f ? $f : tmp 0.004 -0.035 ------------------------ Total 0.152
Output for 7.1.16
empty_loop 0.033 func() 0.005 -0.028 undef_func() 0.004 -0.029 int_func() 0.002 -0.030 $x = self::$x 0.002 -0.031 self::$x = 0 0.002 -0.030 isset(self::$x) 0.002 -0.030 empty(self::$x) 0.002 -0.030 $x = Foo::$x 0.002 -0.031 Foo::$x = 0 0.002 -0.031 isset(Foo::$x) 0.002 -0.031 empty(Foo::$x) 0.002 -0.031 self::f() 0.003 -0.030 Foo::f() 0.003 -0.030 $x = $this->x 0.002 -0.031 $this->x = 0 0.002 -0.031 $this->x += 2 0.002 -0.031 ++$this->x 0.002 -0.031 --$this->x 0.002 -0.031 $this->x++ 0.002 -0.030 $this->x-- 0.002 -0.030 isset($this->x) 0.002 -0.030 empty($this->x) 0.002 -0.030 $this->f() 0.003 -0.030 $x = Foo::TEST 0.003 -0.030 new Foo() 0.006 -0.027 $x = TEST 0.002 -0.031 $x = $_GET 0.002 -0.030 $x = $GLOBALS['v'] 0.003 -0.030 $x = $hash['v'] 0.003 -0.030 $x = $str[0] 0.002 -0.030 $x = $a ?: null 0.002 -0.030 $x = $f ?: tmp 0.003 -0.030 $x = $f ? $f : $a 0.002 -0.030 $x = $f ? $f : tmp 0.003 -0.030 ------------------------ Total 0.118
Output for 7.1.15
empty_loop 0.029 func() 0.004 -0.024 undef_func() 0.004 -0.024 int_func() 0.004 -0.025 $x = self::$x 0.003 -0.025 self::$x = 0 0.003 -0.025 isset(self::$x) 0.002 -0.026 empty(self::$x) 0.002 -0.027 $x = Foo::$x 0.002 -0.027 Foo::$x = 0 0.002 -0.026 isset(Foo::$x) 0.002 -0.027 empty(Foo::$x) 0.002 -0.027 self::f() 0.003 -0.026 Foo::f() 0.003 -0.026 $x = $this->x 0.002 -0.027 $this->x = 0 0.001 -0.027 $this->x += 2 0.002 -0.027 ++$this->x 0.002 -0.027 --$this->x 0.001 -0.027 $this->x++ 0.002 -0.026 $this->x-- 0.002 -0.026 isset($this->x) 0.002 -0.026 empty($this->x) 0.002 -0.026 $this->f() 0.003 -0.026 $x = Foo::TEST 0.003 -0.026 new Foo() 0.006 -0.023 $x = TEST 0.002 -0.027 $x = $_GET 0.003 -0.026 $x = $GLOBALS['v'] 0.003 -0.026 $x = $hash['v'] 0.003 -0.026 $x = $str[0] 0.002 -0.026 $x = $a ?: null 0.002 -0.026 $x = $f ?: tmp 0.002 -0.026 $x = $f ? $f : $a 0.002 -0.026 $x = $f ? $f : tmp 0.003 -0.026 ------------------------ Total 0.115
Output for 7.1.14
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.002 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.002 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.081
Output for 7.1.13
empty_loop 0.040 func() 0.006 -0.033 undef_func() 0.007 -0.033 int_func() 0.004 -0.035 $x = self::$x 0.002 -0.037 self::$x = 0 0.002 -0.037 isset(self::$x) 0.002 -0.037 empty(self::$x) 0.002 -0.037 $x = Foo::$x 0.002 -0.037 Foo::$x = 0 0.002 -0.037 isset(Foo::$x) 0.002 -0.037 empty(Foo::$x) 0.002 -0.037 self::f() 0.003 -0.037 Foo::f() 0.003 -0.037 $x = $this->x 0.002 -0.038 $this->x = 0 0.001 -0.038 $this->x += 2 0.002 -0.038 ++$this->x 0.002 -0.038 --$this->x 0.001 -0.038 $this->x++ 0.002 -0.037 $this->x-- 0.002 -0.037 isset($this->x) 0.002 -0.037 empty($this->x) 0.002 -0.037 $this->f() 0.003 -0.037 $x = Foo::TEST 0.003 -0.037 new Foo() 0.006 -0.033 $x = TEST 0.002 -0.038 $x = $_GET 0.003 -0.037 $x = $GLOBALS['v'] 0.003 -0.037 $x = $hash['v'] 0.002 -0.037 $x = $str[0] 0.002 -0.037 $x = $a ?: null 0.002 -0.037 $x = $f ?: tmp 0.003 -0.037 $x = $f ? $f : $a 0.002 -0.037 $x = $f ? $f : tmp 0.003 -0.037 ------------------------ Total 0.130
Output for 7.1.12
empty_loop 0.001 func() 0.003 0.003 undef_func() 0.004 0.003 int_func() 0.002 0.002 $x = self::$x 0.002 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.003 0.002 empty(Foo::$x) 0.003 0.002 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.003 0.002 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.003 0.002 $this->x-- 0.003 0.002 isset($this->x) 0.003 0.002 empty($this->x) 0.002 0.002 $this->f() 0.003 0.002 $x = Foo::TEST 0.004 0.003 new Foo() 0.007 0.006 $x = TEST 0.002 0.002 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.004 0.003 $x = $hash['v'] 0.004 0.003 $x = $str[0] 0.004 0.003 $x = $a ?: null 0.003 0.002 $x = $f ?: tmp 0.004 0.003 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.004 0.003 ------------------------ Total 0.100
Output for 7.1.11
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.003 0.002 int_func() 0.003 0.002 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.002 empty($this->x) 0.003 0.002 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.020 0.019 $x = $a ?: null 0.006 0.005 $x = $f ?: tmp 0.004 0.003 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.112
Output for 7.1.10
empty_loop 0.017 func() 0.005 -0.012 undef_func() 0.005 -0.012 int_func() 0.004 -0.013 $x = self::$x 0.004 -0.013 self::$x = 0 0.003 -0.014 isset(self::$x) 0.002 -0.014 empty(self::$x) 0.003 -0.014 $x = Foo::$x 0.002 -0.015 Foo::$x = 0 0.002 -0.015 isset(Foo::$x) 0.002 -0.015 empty(Foo::$x) 0.002 -0.015 self::f() 0.003 -0.014 Foo::f() 0.003 -0.014 $x = $this->x 0.002 -0.015 $this->x = 0 0.002 -0.015 $this->x += 2 0.002 -0.015 ++$this->x 0.002 -0.015 --$this->x 0.002 -0.015 $this->x++ 0.003 -0.014 $this->x-- 0.003 -0.014 isset($this->x) 0.002 -0.014 empty($this->x) 0.002 -0.014 $this->f() 0.003 -0.014 $x = Foo::TEST 0.003 -0.014 new Foo() 0.007 -0.010 $x = TEST 0.002 -0.015 $x = $_GET 0.003 -0.014 $x = $GLOBALS['v'] 0.003 -0.014 $x = $hash['v'] 0.003 -0.013 $x = $str[0] 0.004 -0.013 $x = $a ?: null 0.003 -0.014 $x = $f ?: tmp 0.003 -0.014 $x = $f ? $f : $a 0.003 -0.014 $x = $f ? $f : tmp 0.003 -0.014 ------------------------ Total 0.117
Output for 7.1.9
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.003 0.002 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.084
Output for 7.1.8
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.003 0.002 $x = self::$x 0.002 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.007 0.006 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.091
Output for 7.1.7
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.001 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.000 ++$this->x 0.001 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.003 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.083
Output for 7.1.6
empty_loop 0.002 func() 0.004 0.003 undef_func() 0.003 0.001 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.000 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.000 empty(Foo::$x) 0.002 0.000 self::f() 0.003 0.001 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.001 -0.000 $this->x += 2 0.002 0.000 ++$this->x 0.001 -0.000 --$this->x 0.001 -0.000 $this->x++ 0.002 0.000 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.003 0.001 new Foo() 0.006 0.004 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.000 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.082
Output for 7.1.5
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.003 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.025 0.024 $x = $f ? $f : tmp 0.005 0.004 ------------------------ Total 0.111
Output for 7.1.4
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.003 0.002 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.002 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.085
Output for 7.1.3
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.087
Output for 7.1.2
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.085
Output for 7.1.1
empty_loop 0.015 func() 0.005 -0.010 undef_func() 0.005 -0.011 int_func() 0.004 -0.012 $x = self::$x 0.003 -0.012 self::$x = 0 0.002 -0.013 isset(self::$x) 0.002 -0.013 empty(self::$x) 0.002 -0.013 $x = Foo::$x 0.002 -0.013 Foo::$x = 0 0.002 -0.013 isset(Foo::$x) 0.002 -0.013 empty(Foo::$x) 0.002 -0.013 self::f() 0.003 -0.013 Foo::f() 0.003 -0.013 $x = $this->x 0.002 -0.013 $this->x = 0 0.001 -0.014 $this->x += 2 0.002 -0.014 ++$this->x 0.002 -0.014 --$this->x 0.001 -0.014 $this->x++ 0.002 -0.013 $this->x-- 0.002 -0.013 isset($this->x) 0.002 -0.013 empty($this->x) 0.002 -0.013 $this->f() 0.003 -0.013 $x = Foo::TEST 0.003 -0.013 new Foo() 0.006 -0.009 $x = TEST 0.002 -0.014 $x = $_GET 0.003 -0.012 $x = $GLOBALS['v'] 0.003 -0.012 $x = $hash['v'] 0.002 -0.013 $x = $str[0] 0.003 -0.013 $x = $a ?: null 0.002 -0.013 $x = $f ?: tmp 0.003 -0.013 $x = $f ? $f : $a 0.002 -0.013 $x = $f ? $f : tmp 0.003 -0.013 ------------------------ Total 0.102
Output for 7.1.0
empty_loop 0.001 func() 0.006 0.005 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.001 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 -0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 0.000 --$this->x 0.001 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.003 0.001 new Foo() 0.006 0.004 $x = TEST 0.002 0.000 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.086
Output for 7.0.33
empty_loop 0.015 func() 0.004 -0.011 undef_func() 0.003 -0.012 int_func() 0.002 -0.012 $x = self::$x 0.003 -0.012 self::$x = 0 0.003 -0.012 isset(self::$x) 0.002 -0.012 empty(self::$x) 0.002 -0.012 $x = Foo::$x 0.002 -0.013 Foo::$x = 0 0.002 -0.013 isset(Foo::$x) 0.002 -0.013 empty(Foo::$x) 0.002 -0.013 self::f() 0.003 -0.012 Foo::f() 0.003 -0.012 $x = $this->x 0.002 -0.013 $this->x = 0 0.001 -0.013 $this->x += 2 0.002 -0.013 ++$this->x 0.002 -0.013 --$this->x 0.002 -0.013 $this->x++ 0.002 -0.013 $this->x-- 0.002 -0.013 isset($this->x) 0.002 -0.013 empty($this->x) 0.002 -0.013 $this->f() 0.003 -0.012 $x = Foo::TEST 0.002 -0.013 new Foo() 0.006 -0.009 $x = TEST 0.002 -0.013 $x = $_GET 0.002 -0.013 $x = $GLOBALS['v'] 0.003 -0.012 $x = $hash['v'] 0.003 -0.012 $x = $str[0] 0.002 -0.013 $x = $a ?: null 0.019 0.004 $x = $f ?: tmp 0.004 -0.011 $x = $f ? $f : $a 0.003 -0.012 $x = $f ? $f : tmp 0.004 -0.011 ------------------------ Total 0.118
Output for 7.0.32
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.003 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.002 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.000 --$this->x 0.001 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.087
Output for 7.0.31
empty_loop 0.019 func() 0.005 -0.014 undef_func() 0.005 -0.014 int_func() 0.004 -0.015 $x = self::$x 0.003 -0.016 self::$x = 0 0.003 -0.016 isset(self::$x) 0.002 -0.016 empty(self::$x) 0.003 -0.016 $x = Foo::$x 0.002 -0.017 Foo::$x = 0 0.002 -0.016 isset(Foo::$x) 0.002 -0.017 empty(Foo::$x) 0.002 -0.016 self::f() 0.003 -0.015 Foo::f() 0.003 -0.016 $x = $this->x 0.002 -0.017 $this->x = 0 0.001 -0.017 $this->x += 2 0.002 -0.017 ++$this->x 0.002 -0.017 --$this->x 0.002 -0.017 $this->x++ 0.002 -0.016 $this->x-- 0.002 -0.016 isset($this->x) 0.002 -0.016 empty($this->x) 0.002 -0.016 $this->f() 0.003 -0.016 $x = Foo::TEST 0.002 -0.016 new Foo() 0.006 -0.012 $x = TEST 0.002 -0.017 $x = $_GET 0.002 -0.016 $x = $GLOBALS['v'] 0.003 -0.016 $x = $hash['v'] 0.003 -0.016 $x = $str[0] 0.002 -0.016 $x = $a ?: null 0.002 -0.016 $x = $f ?: tmp 0.003 -0.016 $x = $f ? $f : $a 0.002 -0.016 $x = $f ? $f : tmp 0.003 -0.016 ------------------------ Total 0.106
Output for 7.0.30
empty_loop 0.024 func() 0.004 -0.020 undef_func() 0.005 -0.019 int_func() 0.003 -0.021 $x = self::$x 0.004 -0.020 self::$x = 0 0.004 -0.020 isset(self::$x) 0.004 -0.020 empty(self::$x) 0.004 -0.020 $x = Foo::$x 0.003 -0.021 Foo::$x = 0 0.003 -0.021 isset(Foo::$x) 0.003 -0.021 empty(Foo::$x) 0.003 -0.021 self::f() 0.005 -0.019 Foo::f() 0.004 -0.020 $x = $this->x 0.003 -0.021 $this->x = 0 0.002 -0.022 $this->x += 2 0.003 -0.021 ++$this->x 0.002 -0.022 --$this->x 0.002 -0.022 $this->x++ 0.003 -0.021 $this->x-- 0.003 -0.021 isset($this->x) 0.003 -0.021 empty($this->x) 0.003 -0.021 $this->f() 0.004 -0.020 $x = Foo::TEST 0.003 -0.021 new Foo() 0.006 -0.018 $x = TEST 0.002 -0.022 $x = $_GET 0.002 -0.022 $x = $GLOBALS['v'] 0.003 -0.021 $x = $hash['v'] 0.002 -0.022 $x = $str[0] 0.002 -0.022 $x = $a ?: null 0.002 -0.022 $x = $f ?: tmp 0.003 -0.021 $x = $f ? $f : $a 0.002 -0.022 $x = $f ? $f : tmp 0.003 -0.021 ------------------------ Total 0.133
Output for 7.0.29
empty_loop 0.007 func() 0.003 -0.004 undef_func() 0.005 -0.003 int_func() 0.004 -0.004 $x = self::$x 0.003 -0.004 self::$x = 0 0.003 -0.005 isset(self::$x) 0.003 -0.005 empty(self::$x) 0.003 -0.005 $x = Foo::$x 0.002 -0.005 Foo::$x = 0 0.002 -0.005 isset(Foo::$x) 0.002 -0.005 empty(Foo::$x) 0.002 -0.005 self::f() 0.003 -0.004 Foo::f() 0.002 -0.005 $x = $this->x 0.002 -0.005 $this->x = 0 0.001 -0.006 $this->x += 2 0.003 -0.005 ++$this->x 0.002 -0.005 --$this->x 0.002 -0.005 $this->x++ 0.003 -0.004 $this->x-- 0.002 -0.005 isset($this->x) 0.002 -0.005 empty($this->x) 0.002 -0.005 $this->f() 0.003 -0.005 $x = Foo::TEST 0.002 -0.005 new Foo() 0.006 -0.001 $x = TEST 0.002 -0.005 $x = $_GET 0.002 -0.005 $x = $GLOBALS['v'] 0.003 -0.004 $x = $hash['v'] 0.003 -0.005 $x = $str[0] 0.004 -0.004 $x = $a ?: null 0.003 -0.004 $x = $f ?: tmp 0.004 -0.004 $x = $f ? $f : $a 0.003 -0.004 $x = $f ? $f : tmp 0.004 -0.004 ------------------------ Total 0.103
Output for 7.0.28
empty_loop 0.024 func() 0.004 -0.020 undef_func() 0.005 -0.019 int_func() 0.003 -0.021 $x = self::$x 0.004 -0.020 self::$x = 0 0.004 -0.020 isset(self::$x) 0.004 -0.021 empty(self::$x) 0.004 -0.020 $x = Foo::$x 0.003 -0.021 Foo::$x = 0 0.005 -0.020 isset(Foo::$x) 0.005 -0.019 empty(Foo::$x) 0.003 -0.021 self::f() 0.003 -0.021 Foo::f() 0.003 -0.022 $x = $this->x 0.002 -0.022 $this->x = 0 0.001 -0.023 $this->x += 2 0.002 -0.022 ++$this->x 0.002 -0.023 --$this->x 0.002 -0.023 $this->x++ 0.002 -0.022 $this->x-- 0.002 -0.022 isset($this->x) 0.002 -0.022 empty($this->x) 0.002 -0.022 $this->f() 0.003 -0.022 $x = Foo::TEST 0.002 -0.022 new Foo() 0.006 -0.018 $x = TEST 0.002 -0.022 $x = $_GET 0.002 -0.022 $x = $GLOBALS['v'] 0.003 -0.021 $x = $hash['v'] 0.003 -0.022 $x = $str[0] 0.002 -0.022 $x = $a ?: null 0.002 -0.022 $x = $f ?: tmp 0.003 -0.022 $x = $f ? $f : $a 0.002 -0.022 $x = $f ? $f : tmp 0.003 -0.022 ------------------------ Total 0.124
Output for 7.0.27
empty_loop 0.014 func() 0.005 -0.009 undef_func() 0.005 -0.009 int_func() 0.004 -0.011 $x = self::$x 0.004 -0.011 self::$x = 0 0.004 -0.010 isset(self::$x) 0.003 -0.011 empty(self::$x) 0.003 -0.011 $x = Foo::$x 0.002 -0.012 Foo::$x = 0 0.002 -0.012 isset(Foo::$x) 0.002 -0.012 empty(Foo::$x) 0.002 -0.012 self::f() 0.004 -0.010 Foo::f() 0.003 -0.011 $x = $this->x 0.002 -0.012 $this->x = 0 0.002 -0.012 $this->x += 2 0.002 -0.012 ++$this->x 0.002 -0.013 --$this->x 0.002 -0.013 $this->x++ 0.002 -0.012 $this->x-- 0.002 -0.012 isset($this->x) 0.002 -0.012 empty($this->x) 0.003 -0.011 $this->f() 0.003 -0.011 $x = Foo::TEST 0.003 -0.012 new Foo() 0.007 -0.008 $x = TEST 0.002 -0.012 $x = $_GET 0.003 -0.012 $x = $GLOBALS['v'] 0.003 -0.011 $x = $hash['v'] 0.003 -0.011 $x = $str[0] 0.003 -0.012 $x = $a ?: null 0.002 -0.012 $x = $f ?: tmp 0.003 -0.011 $x = $f ? $f : $a 0.003 -0.011 $x = $f ? $f : tmp 0.003 -0.011 ------------------------ Total 0.111
Output for 7.0.26
empty_loop 0.018 func() 0.005 -0.013 undef_func() 0.005 -0.013 int_func() 0.004 -0.014 $x = self::$x 0.003 -0.015 self::$x = 0 0.003 -0.015 isset(self::$x) 0.003 -0.015 empty(self::$x) 0.002 -0.016 $x = Foo::$x 0.002 -0.016 Foo::$x = 0 0.002 -0.016 isset(Foo::$x) 0.002 -0.016 empty(Foo::$x) 0.002 -0.016 self::f() 0.003 -0.015 Foo::f() 0.002 -0.015 $x = $this->x 0.002 -0.016 $this->x = 0 0.001 -0.016 $this->x += 2 0.002 -0.016 ++$this->x 0.001 -0.016 --$this->x 0.002 -0.016 $this->x++ 0.002 -0.016 $this->x-- 0.002 -0.016 isset($this->x) 0.002 -0.016 empty($this->x) 0.002 -0.016 $this->f() 0.003 -0.015 $x = Foo::TEST 0.002 -0.016 new Foo() 0.006 -0.012 $x = TEST 0.002 -0.016 $x = $_GET 0.002 -0.016 $x = $GLOBALS['v'] 0.003 -0.015 $x = $hash['v'] 0.003 -0.015 $x = $str[0] 0.002 -0.015 $x = $a ?: null 0.002 -0.016 $x = $f ?: tmp 0.003 -0.015 $x = $f ? $f : $a 0.003 -0.015 $x = $f ? $f : tmp 0.003 -0.015 ------------------------ Total 0.107
Output for 7.0.25
empty_loop 0.016 func() 0.004 -0.011 undef_func() 0.005 -0.011 int_func() 0.003 -0.012 $x = self::$x 0.004 -0.012 self::$x = 0 0.004 -0.012 isset(self::$x) 0.004 -0.012 empty(self::$x) 0.004 -0.012 $x = Foo::$x 0.002 -0.014 Foo::$x = 0 0.002 -0.014 isset(Foo::$x) 0.002 -0.014 empty(Foo::$x) 0.002 -0.014 self::f() 0.003 -0.012 Foo::f() 0.002 -0.013 $x = $this->x 0.002 -0.014 $this->x = 0 0.002 -0.014 $this->x += 2 0.002 -0.014 ++$this->x 0.001 -0.014 --$this->x 0.001 -0.014 $this->x++ 0.002 -0.013 $this->x-- 0.002 -0.013 isset($this->x) 0.002 -0.013 empty($this->x) 0.002 -0.013 $this->f() 0.002 -0.013 $x = Foo::TEST 0.002 -0.013 new Foo() 0.006 -0.010 $x = TEST 0.002 -0.014 $x = $_GET 0.002 -0.013 $x = $GLOBALS['v'] 0.003 -0.013 $x = $hash['v'] 0.002 -0.013 $x = $str[0] 0.002 -0.013 $x = $a ?: null 0.002 -0.013 $x = $f ?: tmp 0.003 -0.013 $x = $f ? $f : $a 0.002 -0.013 $x = $f ? $f : tmp 0.003 -0.013 ------------------------ Total 0.105
Output for 7.0.24
empty_loop 0.012 func() 0.004 -0.007 undef_func() 0.005 -0.007 int_func() 0.003 -0.008 $x = self::$x 0.004 -0.008 self::$x = 0 0.004 -0.008 isset(self::$x) 0.004 -0.008 empty(self::$x) 0.004 -0.008 $x = Foo::$x 0.003 -0.009 Foo::$x = 0 0.003 -0.009 isset(Foo::$x) 0.003 -0.009 empty(Foo::$x) 0.003 -0.009 self::f() 0.005 -0.006 Foo::f() 0.006 -0.006 $x = $this->x 0.004 -0.007 $this->x = 0 0.003 -0.008 $this->x += 2 0.003 -0.009 ++$this->x 0.001 -0.010 --$this->x 0.001 -0.010 $this->x++ 0.002 -0.010 $this->x-- 0.002 -0.010 isset($this->x) 0.002 -0.010 empty($this->x) 0.002 -0.009 $this->f() 0.002 -0.009 $x = Foo::TEST 0.002 -0.009 new Foo() 0.006 -0.006 $x = TEST 0.002 -0.010 $x = $_GET 0.002 -0.009 $x = $GLOBALS['v'] 0.003 -0.009 $x = $hash['v'] 0.002 -0.009 $x = $str[0] 0.002 -0.009 $x = $a ?: null 0.002 -0.010 $x = $f ?: tmp 0.003 -0.009 $x = $f ? $f : $a 0.002 -0.009 $x = $f ? $f : tmp 0.003 -0.009 ------------------------ Total 0.115
Output for 7.0.23
empty_loop 0.019 func() 0.006 -0.014 undef_func() 0.004 -0.016 int_func() 0.002 -0.017 $x = self::$x 0.003 -0.017 self::$x = 0 0.003 -0.017 isset(self::$x) 0.002 -0.017 empty(self::$x) 0.003 -0.017 $x = Foo::$x 0.002 -0.017 Foo::$x = 0 0.002 -0.017 isset(Foo::$x) 0.002 -0.017 empty(Foo::$x) 0.002 -0.017 self::f() 0.003 -0.016 Foo::f() 0.003 -0.017 $x = $this->x 0.002 -0.018 $this->x = 0 0.002 -0.018 $this->x += 2 0.002 -0.018 ++$this->x 0.001 -0.018 --$this->x 0.001 -0.018 $this->x++ 0.002 -0.017 $this->x-- 0.002 -0.017 isset($this->x) 0.002 -0.017 empty($this->x) 0.002 -0.017 $this->f() 0.003 -0.017 $x = Foo::TEST 0.002 -0.017 new Foo() 0.006 -0.013 $x = TEST 0.002 -0.018 $x = $_GET 0.002 -0.017 $x = $GLOBALS['v'] 0.003 -0.017 $x = $hash['v'] 0.002 -0.017 $x = $str[0] 0.002 -0.017 $x = $a ?: null 0.002 -0.017 $x = $f ?: tmp 0.003 -0.017 $x = $f ? $f : $a 0.002 -0.017 $x = $f ? $f : tmp 0.003 -0.017 ------------------------ Total 0.106
Output for 7.0.22
empty_loop 0.016 func() 0.004 -0.013 undef_func() 0.004 -0.012 int_func() 0.004 -0.013 $x = self::$x 0.003 -0.013 self::$x = 0 0.003 -0.014 isset(self::$x) 0.003 -0.014 empty(self::$x) 0.003 -0.014 $x = Foo::$x 0.002 -0.014 Foo::$x = 0 0.002 -0.014 isset(Foo::$x) 0.002 -0.014 empty(Foo::$x) 0.002 -0.014 self::f() 0.003 -0.013 Foo::f() 0.003 -0.014 $x = $this->x 0.002 -0.014 $this->x = 0 0.001 -0.015 $this->x += 2 0.002 -0.015 ++$this->x 0.001 -0.015 --$this->x 0.002 -0.015 $this->x++ 0.002 -0.014 $this->x-- 0.002 -0.014 isset($this->x) 0.002 -0.014 empty($this->x) 0.002 -0.014 $this->f() 0.003 -0.014 $x = Foo::TEST 0.002 -0.014 new Foo() 0.006 -0.010 $x = TEST 0.002 -0.015 $x = $_GET 0.002 -0.014 $x = $GLOBALS['v'] 0.003 -0.014 $x = $hash['v'] 0.003 -0.014 $x = $str[0] 0.002 -0.014 $x = $a ?: null 0.002 -0.014 $x = $f ?: tmp 0.003 -0.014 $x = $f ? $f : $a 0.002 -0.014 $x = $f ? $f : tmp 0.003 -0.014 ------------------------ Total 0.104
Output for 7.0.21
empty_loop 0.022 func() 0.006 -0.016 undef_func() 0.005 -0.016 int_func() 0.004 -0.017 $x = self::$x 0.003 -0.018 self::$x = 0 0.003 -0.019 isset(self::$x) 0.002 -0.019 empty(self::$x) 0.003 -0.019 $x = Foo::$x 0.002 -0.020 Foo::$x = 0 0.002 -0.020 isset(Foo::$x) 0.002 -0.020 empty(Foo::$x) 0.002 -0.020 self::f() 0.003 -0.018 Foo::f() 0.002 -0.019 $x = $this->x 0.002 -0.020 $this->x = 0 0.002 -0.020 $this->x += 2 0.002 -0.020 ++$this->x 0.002 -0.020 --$this->x 0.001 -0.020 $this->x++ 0.002 -0.020 $this->x-- 0.002 -0.020 isset($this->x) 0.002 -0.019 empty($this->x) 0.002 -0.019 $this->f() 0.003 -0.019 $x = Foo::TEST 0.002 -0.019 new Foo() 0.006 -0.016 $x = TEST 0.002 -0.020 $x = $_GET 0.002 -0.019 $x = $GLOBALS['v'] 0.003 -0.019 $x = $hash['v'] 0.003 -0.019 $x = $str[0] 0.002 -0.019 $x = $a ?: null 0.002 -0.020 $x = $f ?: tmp 0.003 -0.019 $x = $f ? $f : $a 0.002 -0.019 $x = $f ? $f : tmp 0.003 -0.019 ------------------------ Total 0.112
Output for 7.0.20
empty_loop 0.025 func() 0.003 -0.022 undef_func() 0.005 -0.020 int_func() 0.004 -0.021 $x = self::$x 0.003 -0.022 self::$x = 0 0.003 -0.022 isset(self::$x) 0.003 -0.022 empty(self::$x) 0.003 -0.022 $x = Foo::$x 0.002 -0.023 Foo::$x = 0 0.002 -0.023 isset(Foo::$x) 0.002 -0.023 empty(Foo::$x) 0.002 -0.023 self::f() 0.004 -0.021 Foo::f() 0.003 -0.022 $x = $this->x 0.002 -0.023 $this->x = 0 0.002 -0.023 $this->x += 2 0.002 -0.023 ++$this->x 0.002 -0.023 --$this->x 0.002 -0.023 $this->x++ 0.003 -0.022 $this->x-- 0.002 -0.023 isset($this->x) 0.002 -0.023 empty($this->x) 0.003 -0.022 $this->f() 0.003 -0.022 $x = Foo::TEST 0.002 -0.023 new Foo() 0.007 -0.018 $x = TEST 0.002 -0.023 $x = $_GET 0.003 -0.022 $x = $GLOBALS['v'] 0.003 -0.022 $x = $hash['v'] 0.003 -0.022 $x = $str[0] 0.003 -0.022 $x = $a ?: null 0.002 -0.023 $x = $f ?: tmp 0.003 -0.022 $x = $f ? $f : $a 0.003 -0.022 $x = $f ? $f : tmp 0.003 -0.022 ------------------------ Total 0.120
Output for 7.0.19
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.003 0.001 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.087
Output for 7.0.18
empty_loop 0.002 func() 0.003 0.002 undef_func() 0.003 0.001 int_func() 0.002 0.001 $x = self::$x 0.003 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.003 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.000 Foo::$x = 0 0.002 0.000 isset(Foo::$x) 0.002 0.000 empty(Foo::$x) 0.002 0.000 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 -0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 -0.000 --$this->x 0.002 -0.000 $this->x++ 0.002 0.000 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.085
Output for 7.0.17
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.000 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.000 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.087
Output for 7.0.16
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.003 int_func() 0.003 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.002 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.084
Output for 7.0.15
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $x = self::$x 0.002 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.002 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.002 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.081
Output for 7.0.14
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.003 0.002 int_func() 0.003 0.001 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.001 new Foo() 0.007 0.006 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.092
Output for 7.0.13
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.003 0.001 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.004 0.003 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.001 new Foo() 0.007 0.006 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.003 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.093
Output for 7.0.12
empty_loop 0.002 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.000 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.000 empty(Foo::$x) 0.002 0.000 self::f() 0.004 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 -0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 -0.000 --$this->x 0.001 -0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.004 0.003 $x = Foo::TEST 0.003 0.002 new Foo() 0.009 0.007 $x = TEST 0.003 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.004 0.003 $x = $hash['v'] 0.004 0.002 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.003 0.001 $x = $f ?: tmp 0.004 0.002 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.004 0.002 ------------------------ Total 0.102
Output for 7.0.11
empty_loop 0.002 func() 0.004 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.003 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.003 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.000 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.000 empty(Foo::$x) 0.002 0.000 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 -0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 -0.000 --$this->x 0.002 -0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.089
Output for 7.0.10
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.004 0.002 int_func() 0.003 0.001 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.000 --$this->x 0.001 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.088
Output for 7.0.9
empty_loop 0.002 func() 0.005 0.004 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.003 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.000 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.000 empty(Foo::$x) 0.002 0.000 self::f() 0.004 0.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.001 -0.000 $this->x += 2 0.002 0.000 ++$this->x 0.002 -0.000 --$this->x 0.001 -0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.000 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.087
Output for 7.0.8
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.003 0.002 int_func() 0.003 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.001 new Foo() 0.007 0.006 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.003 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.093
Output for 7.0.7
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.001 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.083
Output for 7.0.6
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.002 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.085
Output for 7.0.5
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.003 0.002 $x = self::$x 0.004 0.003 self::$x = 0 0.004 0.003 isset(self::$x) 0.004 0.003 empty(self::$x) 0.004 0.003 $x = Foo::$x 0.003 0.002 Foo::$x = 0 0.003 0.002 isset(Foo::$x) 0.003 0.002 empty(Foo::$x) 0.003 0.002 self::f() 0.005 0.004 Foo::f() 0.004 0.003 $x = $this->x 0.003 0.002 $this->x = 0 0.002 0.001 $this->x += 2 0.003 0.002 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.003 0.002 $this->x-- 0.003 0.002 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.004 0.003 $x = Foo::TEST 0.003 0.002 new Foo() 0.008 0.007 $x = TEST 0.003 0.002 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.004 0.003 $x = $hash['v'] 0.004 0.003 $x = $str[0] 0.004 0.003 $x = $a ?: null 0.003 0.002 $x = $f ?: tmp 0.004 0.003 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.004 0.003 ------------------------ Total 0.121
Output for 7.0.4
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $x = self::$x 0.002 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.002 0.002 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.003 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.002 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.081
Output for 7.0.3
empty_loop 0.014 func() 0.006 -0.008 undef_func() 0.005 -0.009 int_func() 0.002 -0.012 $x = self::$x 0.003 -0.012 self::$x = 0 0.003 -0.012 isset(self::$x) 0.002 -0.012 empty(self::$x) 0.002 -0.012 $x = Foo::$x 0.002 -0.012 Foo::$x = 0 0.002 -0.012 isset(Foo::$x) 0.002 -0.012 empty(Foo::$x) 0.002 -0.012 self::f() 0.003 -0.011 Foo::f() 0.003 -0.012 $x = $this->x 0.002 -0.012 $this->x = 0 0.001 -0.013 $this->x += 2 0.002 -0.012 ++$this->x 0.001 -0.013 --$this->x 0.002 -0.013 $this->x++ 0.002 -0.012 $this->x-- 0.002 -0.012 isset($this->x) 0.002 -0.012 empty($this->x) 0.002 -0.012 $this->f() 0.003 -0.012 $x = Foo::TEST 0.002 -0.012 new Foo() 0.006 -0.008 $x = TEST 0.002 -0.012 $x = $_GET 0.002 -0.012 $x = $GLOBALS['v'] 0.003 -0.011 $x = $hash['v'] 0.002 -0.012 $x = $str[0] 0.002 -0.012 $x = $a ?: null 0.002 -0.012 $x = $f ?: tmp 0.003 -0.011 $x = $f ? $f : $a 0.003 -0.012 $x = $f ? $f : tmp 0.003 -0.011 ------------------------ Total 0.102
Output for 7.0.2
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.002 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.003 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.002 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.002 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.082
Output for 7.0.1
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.002 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.002 $x = $f ? $f : $a 0.002 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.083
Output for 7.0.0
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.003 0.002 int_func() 0.003 0.001 $x = self::$x 0.003 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.003 0.001 empty(self::$x) 0.003 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.004 0.003 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.000 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.003 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.090
Output for 5.6.40
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.002 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.005 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.005 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.009 0.005 $x = Foo::TEST 0.007 0.003 new Foo() 0.011 0.007 $x = TEST 0.005 0.002 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.208
Output for 5.6.39
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.008 0.004 int_func() 0.006 0.002 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.003 Foo::f() 0.007 0.003 $x = $this->x 0.005 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.005 0.001 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.210
Output for 5.6.38
empty_loop 0.004 func() 0.007 0.003 undef_func() 0.007 0.003 int_func() 0.005 0.001 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.001 Foo::$x = 0 0.005 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.003 Foo::f() 0.006 0.002 $x = $this->x 0.005 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.000 --$this->x 0.005 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.001 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.005 0.001 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.205
Output for 5.6.37
empty_loop 0.026 func() 0.011 -0.014 undef_func() 0.007 -0.019 int_func() 0.005 -0.020 $x = self::$x 0.006 -0.019 self::$x = 0 0.006 -0.019 isset(self::$x) 0.006 -0.020 empty(self::$x) 0.006 -0.020 $x = Foo::$x 0.005 -0.020 Foo::$x = 0 0.005 -0.020 isset(Foo::$x) 0.005 -0.021 empty(Foo::$x) 0.005 -0.020 self::f() 0.007 -0.018 Foo::f() 0.006 -0.019 $x = $this->x 0.005 -0.020 $this->x = 0 0.005 -0.020 $this->x += 2 0.005 -0.021 ++$this->x 0.005 -0.021 --$this->x 0.005 -0.021 $this->x++ 0.006 -0.020 $this->x-- 0.005 -0.020 isset($this->x) 0.005 -0.020 empty($this->x) 0.005 -0.020 $this->f() 0.008 -0.018 $x = Foo::TEST 0.006 -0.019 new Foo() 0.013 -0.013 $x = TEST 0.005 -0.020 $x = $_GET 0.006 -0.020 $x = $GLOBALS['v'] 0.007 -0.018 $x = $hash['v'] 0.005 -0.020 $x = $str[0] 0.006 -0.019 $x = $a ?: null 0.005 -0.021 $x = $f ?: tmp 0.007 -0.018 $x = $f ? $f : $a 0.006 -0.020 $x = $f ? $f : tmp 0.007 -0.018 ------------------------ Total 0.236
Output for 5.6.36
empty_loop 0.004 func() 0.007 0.003 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.001 Foo::$x = 0 0.005 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.003 Foo::f() 0.006 0.002 $x = $this->x 0.006 0.002 $this->x = 0 0.006 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.003 ------------------------ Total 0.209
Output for 5.6.35
empty_loop 0.004 func() 0.007 0.004 undef_func() 0.008 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.006 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.006 0.002 empty($this->x) 0.006 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.012 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.220
Output for 5.6.34
empty_loop 0.004 func() 0.006 0.002 undef_func() 0.008 0.004 int_func() 0.008 0.003 $x = self::$x 0.008 0.003 self::$x = 0 0.008 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.006 0.001 empty(Foo::$x) 0.006 0.001 self::f() 0.009 0.005 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.006 0.002 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.000 --$this->x 0.005 0.001 $this->x++ 0.006 0.001 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.001 empty($this->x) 0.006 0.002 $this->f() 0.008 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.013 0.009 $x = TEST 0.006 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.003 ------------------------ Total 0.232
Output for 5.6.33
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.004 0.002 $this->x++ 0.006 0.003 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.206
Output for 5.6.32
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.008 0.005 int_func() 0.006 0.002 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.003 ++$this->x 0.006 0.002 --$this->x 0.004 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.224
Output for 5.6.31
empty_loop 0.003 func() 0.007 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.004 Foo::f() 0.007 0.004 $x = $this->x 0.005 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.005 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.208
Output for 5.6.30
empty_loop 0.006 func() 0.006 0.000 undef_func() 0.007 0.001 int_func() 0.006 -0.000 $x = self::$x 0.006 0.000 self::$x = 0 0.006 0.001 isset(self::$x) 0.006 -0.000 empty(self::$x) 0.006 -0.000 $x = Foo::$x 0.005 -0.001 Foo::$x = 0 0.006 -0.000 isset(Foo::$x) 0.005 -0.001 empty(Foo::$x) 0.005 -0.001 self::f() 0.008 0.002 Foo::f() 0.007 0.001 $x = $this->x 0.005 -0.001 $this->x = 0 0.005 -0.001 $this->x += 2 0.005 -0.001 ++$this->x 0.005 -0.001 --$this->x 0.004 -0.002 $this->x++ 0.005 -0.001 $this->x-- 0.005 -0.001 isset($this->x) 0.005 -0.001 empty($this->x) 0.005 -0.001 $this->f() 0.007 0.001 $x = Foo::TEST 0.006 -0.000 new Foo() 0.011 0.005 $x = TEST 0.005 -0.001 $x = $_GET 0.006 -0.000 $x = $GLOBALS['v'] 0.007 0.001 $x = $hash['v'] 0.006 -0.000 $x = $str[0] 0.006 0.000 $x = $a ?: null 0.005 -0.001 $x = $f ?: tmp 0.007 0.001 $x = $f ? $f : $a 0.006 -0.000 $x = $f ? $f : tmp 0.007 0.001 ------------------------ Total 0.208
Output for 5.6.29
empty_loop 0.004 func() 0.007 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.002 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.208
Output for 5.6.28
empty_loop 0.005 func() 0.008 0.003 undef_func() 0.007 0.003 int_func() 0.006 0.001 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.000 empty(Foo::$x) 0.005 0.000 self::f() 0.008 0.003 Foo::f() 0.007 0.002 $x = $this->x 0.006 0.001 $this->x = 0 0.005 0.000 $this->x += 2 0.005 -0.000 ++$this->x 0.004 -0.000 --$this->x 0.004 -0.000 $this->x++ 0.005 0.000 $this->x-- 0.005 0.000 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.002 $x = Foo::TEST 0.006 0.001 new Foo() 0.011 0.006 $x = TEST 0.005 0.000 $x = $_GET 0.005 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.007 0.002 $x = $a ?: null 0.006 0.001 $x = $f ?: tmp 0.008 0.003 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.008 0.003 ------------------------ Total 0.213
Output for 5.6.27
empty_loop 0.004 func() 0.007 0.002 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.007 0.002 self::$x = 0 0.007 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.009 0.005 Foo::f() 0.007 0.002 $x = $this->x 0.006 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.000 ++$this->x 0.005 0.000 --$this->x 0.005 0.000 $this->x++ 0.006 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.006 0.001 empty($this->x) 0.006 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.007 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.221
Output for 5.6.26
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.009 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.002 $this->x = 0 0.006 0.002 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.002 empty($this->x) 0.006 0.002 $this->f() 0.008 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.014 0.010 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.235
Output for 5.6.25
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.008 0.003 int_func() 0.006 0.002 $x = self::$x 0.007 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.003 Foo::f() 0.007 0.002 $x = $this->x 0.006 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.000 ++$this->x 0.005 0.000 --$this->x 0.005 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.001 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.212
Output for 5.6.24
empty_loop 0.004 func() 0.008 0.003 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.007 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.003 Foo::f() 0.007 0.002 $x = $this->x 0.006 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.000 ++$this->x 0.005 0.000 --$this->x 0.004 -0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.001 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.211
Output for 5.6.23
empty_loop 0.005 func() 0.008 0.002 undef_func() 0.007 0.002 int_func() 0.006 0.001 $x = self::$x 0.007 0.002 self::$x = 0 0.006 0.001 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.000 empty(Foo::$x) 0.005 -0.000 self::f() 0.008 0.002 Foo::f() 0.007 0.002 $x = $this->x 0.006 0.001 $this->x = 0 0.005 -0.000 $this->x += 2 0.005 -0.001 ++$this->x 0.004 -0.001 --$this->x 0.004 -0.001 $this->x++ 0.005 0.000 $this->x-- 0.005 0.000 isset($this->x) 0.005 0.000 empty($this->x) 0.005 -0.000 $this->f() 0.007 0.002 $x = Foo::TEST 0.006 0.000 new Foo() 0.011 0.006 $x = TEST 0.005 0.000 $x = $_GET 0.006 0.000 $x = $GLOBALS['v'] 0.007 0.002 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.001 $x = $a ?: null 0.005 0.000 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.212
Output for 5.6.22
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.009 0.005 $x = self::$x 0.010 0.006 self::$x = 0 0.008 0.004 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.001 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.002 empty($this->x) 0.007 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.016 0.012 $x = TEST 0.009 0.006 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.248
Output for 5.6.21
empty_loop 0.004 func() 0.009 0.004 undef_func() 0.008 0.004 int_func() 0.006 0.002 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.000 --$this->x 0.005 0.000 $this->x++ 0.006 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.006 0.001 empty($this->x) 0.006 0.001 $this->f() 0.008 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.222
Output for 5.6.20
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.005 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.213
Output for 5.6.19
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.006 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.212
Output for 5.6.18
empty_loop 0.003 func() 0.006 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.005 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.005 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.004 0.002 --$this->x 0.004 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.005 0.003 new Foo() 0.011 0.008 $x = TEST 0.006 0.003 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.204
Output for 5.6.17
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.004 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.008 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.005 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.236
Output for 5.6.16
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.004 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.016 0.013 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.008 0.005 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.225
Output for 5.6.15
empty_loop 0.003 func() 0.007 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.006 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.213
Output for 5.6.14
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.005 int_func() 0.006 0.003 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.006 0.003 self::f() 0.010 0.007 Foo::f() 0.009 0.006 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.004 $this->x += 2 0.006 0.003 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.004 empty($this->x) 0.007 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.004 new Foo() 0.016 0.013 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.008 0.005 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.242
Output for 5.6.13
empty_loop 0.003 func() 0.006 0.004 undef_func() 0.007 0.004 int_func() 0.005 0.003 $x = self::$x 0.006 0.004 self::$x = 0 0.006 0.004 isset(self::$x) 0.007 0.004 empty(self::$x) 0.007 0.004 $x = Foo::$x 0.007 0.004 Foo::$x = 0 0.007 0.004 isset(Foo::$x) 0.007 0.004 empty(Foo::$x) 0.007 0.004 self::f() 0.011 0.008 Foo::f() 0.009 0.006 $x = $this->x 0.007 0.004 $this->x = 0 0.007 0.004 $this->x += 2 0.006 0.004 ++$this->x 0.006 0.003 --$this->x 0.006 0.003 $this->x++ 0.007 0.004 $this->x-- 0.007 0.004 isset($this->x) 0.007 0.004 empty($this->x) 0.006 0.004 $this->f() 0.008 0.005 $x = Foo::TEST 0.006 0.003 new Foo() 0.011 0.008 $x = TEST 0.006 0.003 $x = $_GET 0.006 0.004 $x = $GLOBALS['v'] 0.007 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.004 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.005 0.003 $x = $f ? $f : tmp 0.007 0.005 ------------------------ Total 0.236
Output for 5.6.12
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.002 $this->f() 0.006 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.010 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.005 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.226
Output for 5.6.11
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.002 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.207
Output for 5.6.10
empty_loop 0.004 func() 0.008 0.003 undef_func() 0.007 0.002 int_func() 0.005 0.001 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.005 0.001 isset(Foo::$x) 0.005 0.000 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.005 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.000 ++$this->x 0.005 0.000 --$this->x 0.004 -0.000 $this->x++ 0.005 0.000 $this->x-- 0.005 0.000 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.002 $x = Foo::TEST 0.006 0.001 new Foo() 0.011 0.006 $x = TEST 0.005 0.000 $x = $_GET 0.005 0.001 $x = $GLOBALS['v'] 0.007 0.002 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.000 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.005 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.205
Output for 5.6.9
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.008 0.004 empty(self::$x) 0.008 0.004 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.010 0.007 --$this->x 0.006 0.002 $this->x++ 0.005 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.002 empty($this->x) 0.006 0.002 $this->f() 0.008 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.244
Output for 5.6.8
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.006 0.003 $x = $this->x 0.005 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.007 0.004 $this->x-- 0.011 0.008 isset($this->x) 0.007 0.004 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.218
Output for 5.6.7
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.008 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.006 0.003 new Foo() 0.015 0.012 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.247
Output for 5.6.6
empty_loop 0.004 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.002 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.005 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.001 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.005 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.207
Output for 5.6.5
empty_loop 0.004 func() 0.007 0.004 undef_func() 0.008 0.005 int_func() 0.006 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.003 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.004 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.007 0.004 isset($this->x) 0.009 0.006 empty($this->x) 0.008 0.004 $this->f() 0.007 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.013 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.005 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.234
Output for 5.6.4
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.008 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.210
Output for 5.6.3
empty_loop 0.004 func() 0.006 0.002 undef_func() 0.007 0.003 int_func() 0.006 0.001 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.001 Foo::$x = 0 0.005 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.003 Foo::f() 0.006 0.002 $x = $this->x 0.005 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.006 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.006 0.002 empty($this->x) 0.006 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.211
Output for 5.6.2
empty_loop 0.003 func() 0.006 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.004 self::$x = 0 0.006 0.004 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.005 Foo::f() 0.006 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.019 0.017 ++$this->x 0.006 0.003 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.006 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.006 0.004 new Foo() 0.016 0.013 $x = TEST 0.006 0.003 $x = $_GET 0.006 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.009 0.006 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.008 0.006 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.008 0.006 ------------------------ Total 0.241
Output for 5.6.1
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.007 0.004 $x = $this->x 0.005 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.004 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.011 0.007 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.220
Output for 5.6.0
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.005 Foo::f() 0.006 0.003 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.004 0.002 ++$this->x 0.004 0.002 --$this->x 0.004 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.006 0.004 $x = Foo::TEST 0.005 0.003 new Foo() 0.016 0.013 $x = TEST 0.006 0.003 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.008 0.005 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.218
Output for 5.5.38
empty_loop 0.004 func() 0.007 0.003 undef_func() 0.007 0.003 int_func() 0.005 0.001 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.003 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.210
Output for 5.5.37
empty_loop 0.004 func() 0.006 0.002 undef_func() 0.007 0.003 int_func() 0.006 0.001 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.003 Foo::f() 0.006 0.002 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.000 --$this->x 0.005 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.007 0.003 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.213
Output for 5.5.36
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.007 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.000 --$this->x 0.004 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.006 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.225
Output for 5.5.35
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.217
Output for 5.5.34
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.215
Output for 5.5.33
empty_loop 0.004 func() 0.007 0.003 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.006 0.003 new Foo() 0.017 0.013 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.244
Output for 5.5.32
empty_loop 0.005 func() 0.006 0.001 undef_func() 0.007 0.001 int_func() 0.006 0.000 $x = self::$x 0.006 0.001 self::$x = 0 0.006 0.001 isset(self::$x) 0.006 0.000 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.005 0.000 Foo::$x = 0 0.005 0.000 isset(Foo::$x) 0.005 -0.000 empty(Foo::$x) 0.005 -0.001 self::f() 0.008 0.002 Foo::f() 0.006 0.001 $x = $this->x 0.005 0.000 $this->x = 0 0.005 -0.000 $this->x += 2 0.004 -0.001 ++$this->x 0.004 -0.001 --$this->x 0.005 -0.000 $this->x++ 0.005 -0.000 $this->x-- 0.005 -0.001 isset($this->x) 0.005 -0.000 empty($this->x) 0.005 0.000 $this->f() 0.007 0.001 $x = Foo::TEST 0.005 -0.000 new Foo() 0.011 0.006 $x = TEST 0.005 -0.001 $x = $_GET 0.005 0.000 $x = $GLOBALS['v'] 0.007 0.002 $x = $hash['v'] 0.005 0.000 $x = $str[0] 0.006 0.001 $x = $a ?: null 0.005 -0.000 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.204
Output for 5.5.31
empty_loop 0.005 func() 0.007 0.002 undef_func() 0.007 0.002 int_func() 0.005 0.000 $x = self::$x 0.006 0.001 self::$x = 0 0.006 0.001 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.005 0.000 isset(Foo::$x) 0.005 0.000 empty(Foo::$x) 0.005 0.000 self::f() 0.008 0.003 Foo::f() 0.006 0.002 $x = $this->x 0.005 0.001 $this->x = 0 0.005 0.000 $this->x += 2 0.005 -0.000 ++$this->x 0.005 -0.000 --$this->x 0.005 -0.000 $this->x++ 0.005 0.000 $this->x-- 0.005 -0.000 isset($this->x) 0.005 0.000 empty($this->x) 0.005 0.000 $this->f() 0.007 0.002 $x = Foo::TEST 0.005 0.001 new Foo() 0.011 0.006 $x = TEST 0.005 -0.000 $x = $_GET 0.006 0.001 $x = $GLOBALS['v'] 0.007 0.002 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.001 $x = $a ?: null 0.005 -0.000 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.205
Output for 5.5.30
empty_loop 0.003 func() 0.007 0.003 undef_func() 0.007 0.003 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.003 empty(Foo::$x) 0.006 0.003 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.004 $this->x += 2 0.006 0.003 ++$this->x 0.006 0.002 --$this->x 0.006 0.003 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.006 0.003 new Foo() 0.017 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.236
Output for 5.5.29
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.005 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.011 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.228
Output for 5.5.28
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.011 0.007 Foo::f() 0.009 0.006 $x = $this->x 0.011 0.007 $this->x = 0 0.008 0.004 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.005 0.001 $this->x++ 0.006 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.066 0.062 empty($this->x) 0.007 0.003 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.305
Output for 5.5.27
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.005 0.003 $x = self::$x 0.007 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.009 0.007 Foo::f() 0.009 0.006 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.004 $this->x += 2 0.006 0.003 ++$this->x 0.006 0.003 --$this->x 0.006 0.003 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.004 empty($this->x) 0.007 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.004 new Foo() 0.017 0.014 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.233
Output for 5.5.26
empty_loop 0.003 func() 0.006 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.006 0.004 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.004 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.003 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.003 empty($this->x) 0.005 0.003 $this->f() 0.007 0.005 $x = Foo::TEST 0.006 0.003 new Foo() 0.014 0.012 $x = TEST 0.005 0.003 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.006 0.004 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.007 0.005 $x = $f ? $f : $a 0.006 0.004 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.216
Output for 5.5.25
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.003 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.007 0.003 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.240
Output for 5.5.24
empty_loop 0.005 func() 0.007 0.002 undef_func() 0.007 0.002 int_func() 0.006 0.001 $x = self::$x 0.007 0.002 self::$x = 0 0.007 0.002 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.000 empty(Foo::$x) 0.005 0.000 self::f() 0.008 0.003 Foo::f() 0.007 0.002 $x = $this->x 0.006 0.001 $this->x = 0 0.005 0.001 $this->x += 2 0.005 -0.000 ++$this->x 0.004 -0.000 --$this->x 0.005 -0.000 $this->x++ 0.005 0.000 $this->x-- 0.005 0.000 isset($this->x) 0.005 0.000 empty($this->x) 0.005 0.001 $this->f() 0.007 0.002 $x = Foo::TEST 0.006 0.001 new Foo() 0.013 0.008 $x = TEST 0.005 -0.000 $x = $_GET 0.006 0.001 $x = $GLOBALS['v'] 0.007 0.002 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.001 $x = $a ?: null 0.005 0.000 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.213
Output for 5.5.23
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.006 int_func() 0.007 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.004 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.243
Output for 5.5.22
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.007 0.003 empty(Foo::$x) 0.007 0.003 self::f() 0.011 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.003 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.007 0.003 $this->x-- 0.007 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.006 0.003 $this->f() 0.008 0.004 $x = Foo::TEST 0.005 0.001 new Foo() 0.011 0.008 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.246
Output for 5.5.21
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.008 0.004 int_func() 0.005 0.002 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.002 isset(self::$x) 0.005 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.004 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.207
Output for 5.5.20
empty_loop 0.005 func() 0.007 0.003 undef_func() 0.007 0.002 int_func() 0.006 0.001 $x = self::$x 0.006 0.001 self::$x = 0 0.006 0.001 isset(self::$x) 0.007 0.002 empty(self::$x) 0.007 0.002 $x = Foo::$x 0.007 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.006 0.001 empty(Foo::$x) 0.006 0.001 self::f() 0.010 0.005 Foo::f() 0.009 0.004 $x = $this->x 0.006 0.002 $this->x = 0 0.012 0.007 $this->x += 2 0.005 -0.000 ++$this->x 0.005 -0.000 --$this->x 0.004 -0.000 $this->x++ 0.005 0.000 $this->x-- 0.005 0.000 isset($this->x) 0.005 0.000 empty($this->x) 0.005 0.000 $this->f() 0.007 0.002 $x = Foo::TEST 0.005 0.000 new Foo() 0.015 0.010 $x = TEST 0.005 0.000 $x = $_GET 0.006 0.001 $x = $GLOBALS['v'] 0.008 0.003 $x = $hash['v'] 0.006 0.001 $x = $str[0] 0.006 0.001 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.231
Output for 5.5.19
empty_loop 0.004 func() 0.008 0.005 undef_func() 0.009 0.005 int_func() 0.007 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.008 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.015 0.011 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.241
Output for 5.5.18
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.005 0.002 new Foo() 0.013 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.212
Output for 5.5.17
empty_loop 0.013 func() 0.006 -0.007 undef_func() 0.008 -0.006 int_func() 0.006 -0.008 $x = self::$x 0.007 -0.006 self::$x = 0 0.007 -0.006 isset(self::$x) 0.006 -0.007 empty(self::$x) 0.006 -0.007 $x = Foo::$x 0.006 -0.007 Foo::$x = 0 0.006 -0.008 isset(Foo::$x) 0.005 -0.008 empty(Foo::$x) 0.005 -0.008 self::f() 0.008 -0.005 Foo::f() 0.007 -0.006 $x = $this->x 0.006 -0.007 $this->x = 0 0.006 -0.008 $this->x += 2 0.005 -0.009 ++$this->x 0.005 -0.008 --$this->x 0.005 -0.008 $this->x++ 0.006 -0.007 $this->x-- 0.005 -0.008 isset($this->x) 0.006 -0.008 empty($this->x) 0.005 -0.008 $this->f() 0.007 -0.007 $x = Foo::TEST 0.005 -0.008 new Foo() 0.011 -0.002 $x = TEST 0.005 -0.008 $x = $_GET 0.007 -0.006 $x = $GLOBALS['v'] 0.008 -0.005 $x = $hash['v'] 0.006 -0.007 $x = $str[0] 0.008 -0.005 $x = $a ?: null 0.006 -0.007 $x = $f ?: tmp 0.009 -0.005 $x = $f ? $f : $a 0.007 -0.006 $x = $f ? $f : tmp 0.008 -0.005 ------------------------ Total 0.233
Output for 5.5.16
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.000 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.006 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.213
Output for 5.5.15
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.005 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.005 Foo::f() 0.006 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.004 0.002 ++$this->x 0.005 0.002 --$this->x 0.006 0.003 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.007 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.004 new Foo() 0.017 0.014 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.006 $x = $f ? $f : $a 0.013 0.010 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.235
Output for 5.5.14
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.008 0.004 int_func() 0.006 0.002 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.009 0.006 Foo::f() 0.012 0.009 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.013 0.009 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.005 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.227
Output for 5.5.13
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.006 int_func() 0.007 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.007 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.005 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.006 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.011 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.215
Output for 5.5.12
empty_loop 0.003 func() 0.007 0.003 undef_func() 0.008 0.005 int_func() 0.006 0.002 $x = self::$x 0.007 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.004 Foo::f() 0.006 0.003 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.013 0.009 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.212
Output for 5.5.11
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.007 0.003 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.009 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.006 $x = $f ? $f : $a 0.008 0.005 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.236
Output for 5.5.10
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.005 int_func() 0.005 0.003 $x = self::$x 0.006 0.004 self::$x = 0 0.006 0.004 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.006 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.005 0.002 new Foo() 0.012 0.009 $x = TEST 0.004 0.002 $x = $_GET 0.005 0.003 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.206
Output for 5.5.9
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.006 int_func() 0.007 0.003 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.004 0.001 ++$this->x 0.004 0.000 --$this->x 0.004 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.212
Output for 5.5.8
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.004 0.001 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.013 0.010 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.005 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.008 0.005 ------------------------ Total 0.216
Output for 5.5.7
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.005 int_func() 0.006 0.003 $x = self::$x 0.008 0.005 self::$x = 0 0.008 0.005 isset(self::$x) 0.007 0.004 empty(self::$x) 0.007 0.005 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.007 0.005 $x = Foo::TEST 0.006 0.003 new Foo() 0.012 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.007 0.005 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.005 ------------------------ Total 0.219
Output for 5.5.6
empty_loop 0.005 func() 0.007 0.002 undef_func() 0.007 0.002 int_func() 0.006 0.001 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.001 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.005 0.001 Foo::$x = 0 0.005 0.001 isset(Foo::$x) 0.005 0.000 empty(Foo::$x) 0.005 0.000 self::f() 0.007 0.002 Foo::f() 0.006 0.001 $x = $this->x 0.006 0.001 $this->x = 0 0.005 0.000 $this->x += 2 0.005 -0.000 ++$this->x 0.005 0.000 --$this->x 0.005 0.000 $this->x++ 0.006 0.001 $this->x-- 0.006 0.001 isset($this->x) 0.007 0.002 empty($this->x) 0.007 0.002 $this->f() 0.010 0.005 $x = Foo::TEST 0.007 0.002 new Foo() 0.018 0.013 $x = TEST 0.009 0.004 $x = $_GET 0.008 0.004 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.005 0.001 $x = $str[0] 0.006 0.001 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.230
Output for 5.5.5
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.006 int_func() 0.007 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.009 0.005 Foo::f() 0.008 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.012 0.009 empty($this->x) 0.008 0.005 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.237
Output for 5.5.4
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.005 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.008 0.005 $x = Foo::TEST 0.023 0.020 new Foo() 0.016 0.013 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.235
Output for 5.5.3
empty_loop 0.011 func() 0.008 -0.004 undef_func() 0.010 -0.002 int_func() 0.007 -0.004 $x = self::$x 0.008 -0.004 self::$x = 0 0.007 -0.004 isset(self::$x) 0.007 -0.004 empty(self::$x) 0.006 -0.006 $x = Foo::$x 0.005 -0.006 Foo::$x = 0 0.006 -0.006 isset(Foo::$x) 0.006 -0.005 empty(Foo::$x) 0.006 -0.005 self::f() 0.010 -0.002 Foo::f() 0.008 -0.003 $x = $this->x 0.006 -0.005 $this->x = 0 0.007 -0.005 $this->x += 2 0.006 -0.006 ++$this->x 0.005 -0.006 --$this->x 0.005 -0.006 $this->x++ 0.006 -0.005 $this->x-- 0.006 -0.006 isset($this->x) 0.006 -0.005 empty($this->x) 0.007 -0.005 $this->f() 0.010 -0.001 $x = Foo::TEST 0.006 -0.005 new Foo() 0.016 0.004 $x = TEST 0.005 -0.007 $x = $_GET 0.006 -0.006 $x = $GLOBALS['v'] 0.007 -0.004 $x = $hash['v'] 0.006 -0.006 $x = $str[0] 0.007 -0.005 $x = $a ?: null 0.006 -0.005 $x = $f ?: tmp 0.009 -0.003 $x = $f ? $f : $a 0.006 -0.005 $x = $f ? $f : tmp 0.007 -0.004 ------------------------ Total 0.252
Output for 5.5.2
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.006 int_func() 0.007 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.007 0.003 empty(Foo::$x) 0.007 0.003 self::f() 0.011 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.007 0.003 $this->x-- 0.007 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.016 0.013 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.255
Output for 5.5.1
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.007 0.003 int_func() 0.005 0.002 $x = self::$x 0.006 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.002 isset($this->x) 0.006 0.002 empty($this->x) 0.006 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.225
Output for 5.5.0
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.007 0.003 int_func() 0.005 0.002 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.002 isset(self::$x) 0.005 0.001 empty(self::$x) 0.005 0.001 $x = Foo::$x 0.005 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.008 0.005 $x = $this->x 0.006 0.002 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.019 0.015 empty($this->x) 0.006 0.002 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.013 $x = TEST 0.005 0.001 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.252
Output for 5.4.45
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.241
Output for 5.4.44
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.008 0.004 int_func() 0.007 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.009 0.005 Foo::f() 0.008 0.004 $x = $this->x 0.006 0.002 $this->x = 0 0.006 0.002 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.006 0.001 isset($this->x) 0.006 0.002 empty($this->x) 0.006 0.002 $this->f() 0.008 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.014 0.010 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.229
Output for 5.4.43
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.008 0.005 int_func() 0.007 0.003 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.013 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.218
Output for 5.4.42
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.009 0.006 int_func() 0.007 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.007 0.004 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.006 0.003 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.004 empty($this->x) 0.007 0.004 $this->f() 0.011 0.008 $x = Foo::TEST 0.007 0.004 new Foo() 0.018 0.015 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.009 0.006 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.006 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.009 0.006 ------------------------ Total 0.251
Output for 5.4.41
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.005 int_func() 0.006 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.006 0.004 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.004 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.003 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.011 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.004 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.205
Output for 5.4.40
empty_loop 0.005 func() 0.009 0.004 undef_func() 0.010 0.004 int_func() 0.008 0.003 $x = self::$x 0.007 0.002 self::$x = 0 0.008 0.002 isset(self::$x) 0.007 0.002 empty(self::$x) 0.007 0.002 $x = Foo::$x 0.011 0.006 Foo::$x = 0 0.008 0.002 isset(Foo::$x) 0.006 0.001 empty(Foo::$x) 0.005 -0.000 self::f() 0.008 0.002 Foo::f() 0.007 0.001 $x = $this->x 0.006 0.001 $this->x = 0 0.005 0.000 $this->x += 2 0.005 -0.000 ++$this->x 0.004 -0.001 --$this->x 0.005 -0.001 $this->x++ 0.005 -0.000 $this->x-- 0.005 -0.000 isset($this->x) 0.005 0.000 empty($this->x) 0.006 0.000 $this->f() 0.007 0.002 $x = Foo::TEST 0.006 0.000 new Foo() 0.012 0.007 $x = TEST 0.005 -0.000 $x = $_GET 0.006 0.000 $x = $GLOBALS['v'] 0.007 0.002 $x = $hash['v'] 0.006 0.000 $x = $str[0] 0.006 0.001 $x = $a ?: null 0.005 -0.000 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.006 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.232
Output for 5.4.39
empty_loop 0.003 func() 0.008 0.005 undef_func() 0.007 0.005 int_func() 0.006 0.003 $x = self::$x 0.006 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.009 0.006 $x = $this->x 0.007 0.004 $this->x = 0 0.007 0.004 $this->x += 2 0.006 0.003 ++$this->x 0.005 0.002 --$this->x 0.005 0.003 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.004 empty($this->x) 0.007 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.004 new Foo() 0.017 0.014 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.006 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.009 0.006 ------------------------ Total 0.246
Output for 5.4.38
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.008 0.003 int_func() 0.007 0.002 $x = self::$x 0.007 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.000 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.001 $this->x = 0 0.006 0.001 $this->x += 2 0.006 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.006 0.001 empty($this->x) 0.006 0.001 $this->f() 0.008 0.003 $x = Foo::TEST 0.006 0.001 new Foo() 0.013 0.009 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.001 $x = $GLOBALS['v'] 0.008 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.221
Output for 5.4.37
empty_loop 0.004 func() 0.010 0.006 undef_func() 0.010 0.006 int_func() 0.009 0.005 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.004 empty(self::$x) 0.007 0.004 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.014 0.010 $x = TEST 0.006 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.234
Output for 5.4.36
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.009 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.260
Output for 5.4.35
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.003 self::f() 0.010 0.007 Foo::f() 0.009 0.006 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.003 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.248
Output for 5.4.34
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.004 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.013 0.010 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.243
Output for 5.4.33
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.008 0.005 int_func() 0.006 0.004 $x = self::$x 0.006 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.007 0.005 Foo::f() 0.007 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.003 $this->x-- 0.005 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.007 0.005 $x = Foo::TEST 0.006 0.004 new Foo() 0.016 0.013 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.008 0.005 $x = $hash['v'] 0.011 0.008 $x = $str[0] 0.007 0.004 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.005 ------------------------ Total 0.225
Output for 5.4.32
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.246
Output for 5.4.31
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.011 0.008 $x = TEST 0.005 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.245
Output for 5.4.30
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.007 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.006 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.234
Output for 5.4.29
empty_loop 0.006 func() 0.007 0.001 undef_func() 0.007 0.001 int_func() 0.007 0.001 $x = self::$x 0.007 0.001 self::$x = 0 0.007 0.001 isset(self::$x) 0.007 0.000 empty(self::$x) 0.007 0.000 $x = Foo::$x 0.006 -0.000 Foo::$x = 0 0.006 -0.000 isset(Foo::$x) 0.005 -0.001 empty(Foo::$x) 0.005 -0.001 self::f() 0.008 0.002 Foo::f() 0.007 0.001 $x = $this->x 0.006 -0.000 $this->x = 0 0.005 -0.001 $this->x += 2 0.005 -0.002 ++$this->x 0.005 -0.002 --$this->x 0.004 -0.002 $this->x++ 0.005 -0.001 $this->x-- 0.005 -0.001 isset($this->x) 0.005 -0.001 empty($this->x) 0.005 -0.001 $this->f() 0.007 0.001 $x = Foo::TEST 0.006 -0.001 new Foo() 0.012 0.006 $x = TEST 0.005 -0.001 $x = $_GET 0.006 -0.000 $x = $GLOBALS['v'] 0.008 0.002 $x = $hash['v'] 0.006 -0.000 $x = $str[0] 0.007 0.001 $x = $a ?: null 0.005 -0.001 $x = $f ?: tmp 0.008 0.002 $x = $f ? $f : $a 0.006 0.000 $x = $f ? $f : tmp 0.007 0.001 ------------------------ Total 0.220
Output for 5.4.28
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.007 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.005 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.008 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.002 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.004 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.005 0.002 new Foo() 0.012 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.209
Output for 5.4.27
empty_loop 0.003 func() 0.006 0.003 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.003 $this->x = 0 0.008 0.004 $this->x += 2 0.006 0.003 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.003 new Foo() 0.012 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.212
Output for 5.4.26
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.009 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.008 0.004 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.004 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.219
Output for 5.4.25
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.007 0.005 int_func() 0.006 0.003 $x = self::$x 0.006 0.004 self::$x = 0 0.006 0.004 isset(self::$x) 0.006 0.003 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.002 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.006 0.003 $this->x = 0 0.005 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.005 0.002 --$this->x 0.004 0.002 $this->x++ 0.005 0.002 $this->x-- 0.005 0.002 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.005 0.003 new Foo() 0.012 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.005 0.003 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.005 0.003 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.201
Output for 5.4.24
empty_loop 0.016 func() 0.010 -0.006 undef_func() 0.008 -0.009 int_func() 0.006 -0.010 $x = self::$x 0.007 -0.010 self::$x = 0 0.006 -0.010 isset(self::$x) 0.006 -0.010 empty(self::$x) 0.006 -0.010 $x = Foo::$x 0.006 -0.010 Foo::$x = 0 0.006 -0.011 isset(Foo::$x) 0.005 -0.012 empty(Foo::$x) 0.005 -0.012 self::f() 0.008 -0.008 Foo::f() 0.007 -0.009 $x = $this->x 0.006 -0.011 $this->x = 0 0.005 -0.011 $this->x += 2 0.005 -0.011 ++$this->x 0.005 -0.012 --$this->x 0.005 -0.012 $this->x++ 0.005 -0.011 $this->x-- 0.005 -0.012 isset($this->x) 0.005 -0.011 empty($this->x) 0.005 -0.011 $this->f() 0.007 -0.009 $x = Foo::TEST 0.006 -0.011 new Foo() 0.012 -0.004 $x = TEST 0.005 -0.012 $x = $_GET 0.005 -0.011 $x = $GLOBALS['v'] 0.008 -0.008 $x = $hash['v'] 0.006 -0.010 $x = $str[0] 0.007 -0.009 $x = $a ?: null 0.005 -0.011 $x = $f ?: tmp 0.007 -0.009 $x = $f ? $f : $a 0.006 -0.010 $x = $f ? $f : tmp 0.007 -0.009 ------------------------ Total 0.227
Output for 5.4.23
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.009 0.005 int_func() 0.006 0.002 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.002 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.015 0.011 $x = TEST 0.005 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.239
Output for 5.4.22
empty_loop 0.003 func() 0.007 0.004 undef_func() 0.008 0.005 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.003 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.005 Foo::f() 0.007 0.004 $x = $this->x 0.005 0.002 $this->x = 0 0.006 0.003 $this->x += 2 0.005 0.002 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.004 0.001 isset($this->x) 0.005 0.002 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.005 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.206
Output for 5.4.21
empty_loop 0.033 func() 0.007 -0.026 undef_func() 0.009 -0.024 int_func() 0.006 -0.027 $x = self::$x 0.006 -0.027 self::$x = 0 0.006 -0.027 isset(self::$x) 0.006 -0.027 empty(self::$x) 0.006 -0.027 $x = Foo::$x 0.005 -0.028 Foo::$x = 0 0.005 -0.028 isset(Foo::$x) 0.005 -0.028 empty(Foo::$x) 0.005 -0.028 self::f() 0.008 -0.025 Foo::f() 0.007 -0.026 $x = $this->x 0.006 -0.027 $this->x = 0 0.005 -0.028 $this->x += 2 0.005 -0.028 ++$this->x 0.004 -0.029 --$this->x 0.004 -0.029 $this->x++ 0.005 -0.028 $this->x-- 0.005 -0.028 isset($this->x) 0.005 -0.028 empty($this->x) 0.005 -0.028 $this->f() 0.007 -0.026 $x = Foo::TEST 0.005 -0.028 new Foo() 0.012 -0.021 $x = TEST 0.004 -0.029 $x = $_GET 0.005 -0.028 $x = $GLOBALS['v'] 0.008 -0.025 $x = $hash['v'] 0.006 -0.027 $x = $str[0] 0.007 -0.026 $x = $a ?: null 0.005 -0.028 $x = $f ?: tmp 0.008 -0.025 $x = $f ? $f : $a 0.007 -0.026 $x = $f ? $f : tmp 0.007 -0.026 ------------------------ Total 0.240
Output for 5.4.20
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.008 0.004 int_func() 0.006 0.002 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.006 0.002 self::f() 0.009 0.005 Foo::f() 0.008 0.004 $x = $this->x 0.006 0.002 $this->x = 0 0.008 0.004 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.020 0.016 empty($this->x) 0.007 0.003 $this->f() 0.011 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.013 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.009 0.004 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.004 ------------------------ Total 0.266
Output for 5.4.19
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.003 empty(Foo::$x) 0.006 0.003 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.006 0.003 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.006 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.009 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.008 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.259
Output for 5.4.18
empty_loop 0.004 func() 0.010 0.006 undef_func() 0.007 0.004 int_func() 0.006 0.002 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.211
Output for 5.4.17
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.009 0.005 $x = self::$x 0.008 0.004 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.006 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.009 0.005 Foo::f() 0.008 0.004 $x = $this->x 0.006 0.002 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.001 --$this->x 0.005 0.001 $this->x++ 0.005 0.002 $this->x-- 0.005 0.001 isset($this->x) 0.006 0.002 empty($this->x) 0.006 0.002 $this->f() 0.008 0.005 $x = Foo::TEST 0.010 0.006 new Foo() 0.014 0.010 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.237
Output for 5.4.16
empty_loop 0.024 func() 0.010 -0.014 undef_func() 0.007 -0.016 int_func() 0.006 -0.018 $x = self::$x 0.006 -0.017 self::$x = 0 0.007 -0.017 isset(self::$x) 0.006 -0.017 empty(self::$x) 0.007 -0.017 $x = Foo::$x 0.006 -0.017 Foo::$x = 0 0.006 -0.017 isset(Foo::$x) 0.006 -0.018 empty(Foo::$x) 0.006 -0.017 self::f() 0.010 -0.013 Foo::f() 0.009 -0.015 $x = $this->x 0.007 -0.017 $this->x = 0 0.007 -0.017 $this->x += 2 0.006 -0.017 ++$this->x 0.006 -0.018 --$this->x 0.006 -0.018 $this->x++ 0.006 -0.017 $this->x-- 0.006 -0.017 isset($this->x) 0.006 -0.017 empty($this->x) 0.006 -0.017 $this->f() 0.010 -0.013 $x = Foo::TEST 0.006 -0.017 new Foo() 0.017 -0.006 $x = TEST 0.006 -0.018 $x = $_GET 0.007 -0.017 $x = $GLOBALS['v'] 0.009 -0.014 $x = $hash['v'] 0.011 -0.012 $x = $str[0] 0.010 -0.014 $x = $a ?: null 0.006 -0.017 $x = $f ?: tmp 0.007 -0.016 $x = $f ? $f : $a 0.006 -0.018 $x = $f ? $f : tmp 0.007 -0.017 ------------------------ Total 0.275
Output for 5.4.15
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.007 0.003 $this->f() 0.007 0.004 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.008 0.004 $x = $f ?: tmp 0.011 0.007 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.249
Output for 5.4.14
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.006 0.003 $this->x += 2 0.004 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.011 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.005 0.002 $x = $GLOBALS['v'] 0.007 0.003 $x = $hash['v'] 0.005 0.002 $x = $str[0] 0.006 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.225
Output for 5.4.13
empty_loop 0.037 func() 0.008 -0.028 undef_func() 0.007 -0.029 int_func() 0.007 -0.030 $x = self::$x 0.007 -0.030 self::$x = 0 0.006 -0.030 isset(self::$x) 0.006 -0.030 empty(self::$x) 0.006 -0.031 $x = Foo::$x 0.006 -0.031 Foo::$x = 0 0.005 -0.031 isset(Foo::$x) 0.005 -0.032 empty(Foo::$x) 0.005 -0.032 self::f() 0.008 -0.029 Foo::f() 0.007 -0.030 $x = $this->x 0.006 -0.030 $this->x = 0 0.007 -0.030 $this->x += 2 0.006 -0.031 ++$this->x 0.005 -0.032 --$this->x 0.005 -0.031 $this->x++ 0.006 -0.031 $this->x-- 0.006 -0.031 isset($this->x) 0.006 -0.031 empty($this->x) 0.006 -0.030 $this->f() 0.010 -0.027 $x = Foo::TEST 0.006 -0.030 new Foo() 0.017 -0.020 $x = TEST 0.005 -0.031 $x = $_GET 0.007 -0.030 $x = $GLOBALS['v'] 0.009 -0.028 $x = $hash['v'] 0.006 -0.030 $x = $str[0] 0.008 -0.029 $x = $a ?: null 0.006 -0.030 $x = $f ?: tmp 0.009 -0.028 $x = $f ? $f : $a 0.007 -0.030 $x = $f ? $f : tmp 0.009 -0.028 ------------------------ Total 0.272
Output for 5.4.12
empty_loop 0.005 func() 0.006 0.002 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.001 empty(self::$x) 0.006 0.001 $x = Foo::$x 0.006 0.001 Foo::$x = 0 0.006 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.006 0.002 self::f() 0.013 0.008 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.006 0.001 $this->x += 2 0.005 0.000 ++$this->x 0.005 0.000 --$this->x 0.004 -0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.027 0.022 empty($this->x) 0.006 0.002 $this->f() 0.008 0.003 $x = Foo::TEST 0.006 0.001 new Foo() 0.013 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.003 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.002 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.008 0.003 $x = $f ? $f : $a 0.006 0.002 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.246
Output for 5.4.11
empty_loop 0.015 func() 0.009 -0.006 undef_func() 0.010 -0.005 int_func() 0.008 -0.007 $x = self::$x 0.007 -0.008 self::$x = 0 0.007 -0.008 isset(self::$x) 0.007 -0.008 empty(self::$x) 0.007 -0.008 $x = Foo::$x 0.006 -0.009 Foo::$x = 0 0.006 -0.009 isset(Foo::$x) 0.006 -0.009 empty(Foo::$x) 0.006 -0.009 self::f() 0.010 -0.005 Foo::f() 0.009 -0.006 $x = $this->x 0.006 -0.009 $this->x = 0 0.007 -0.008 $this->x += 2 0.006 -0.009 ++$this->x 0.005 -0.010 --$this->x 0.005 -0.010 $this->x++ 0.006 -0.009 $this->x-- 0.006 -0.009 isset($this->x) 0.006 -0.009 empty($this->x) 0.006 -0.009 $this->f() 0.010 -0.005 $x = Foo::TEST 0.007 -0.008 new Foo() 0.017 0.002 $x = TEST 0.006 -0.009 $x = $_GET 0.007 -0.008 $x = $GLOBALS['v'] 0.009 -0.006 $x = $hash['v'] 0.007 -0.008 $x = $str[0] 0.008 -0.007 $x = $a ?: null 0.006 -0.009 $x = $f ?: tmp 0.009 -0.006 $x = $f ? $f : $a 0.007 -0.008 $x = $f ? $f : tmp 0.008 -0.007 ------------------------ Total 0.266
Output for 5.4.10
empty_loop 0.006 func() 0.007 0.002 undef_func() 0.007 0.002 int_func() 0.007 0.001 $x = self::$x 0.006 0.001 self::$x = 0 0.006 0.000 isset(self::$x) 0.006 0.000 empty(self::$x) 0.006 0.000 $x = Foo::$x 0.007 0.002 Foo::$x = 0 0.008 0.002 isset(Foo::$x) 0.007 0.001 empty(Foo::$x) 0.006 0.000 self::f() 0.008 0.003 Foo::f() 0.008 0.002 $x = $this->x 0.006 0.001 $this->x = 0 0.006 0.000 $this->x += 2 0.005 -0.001 ++$this->x 0.005 -0.001 --$this->x 0.005 -0.001 $this->x++ 0.005 -0.000 $this->x-- 0.005 -0.000 isset($this->x) 0.006 -0.000 empty($this->x) 0.006 0.000 $this->f() 0.008 0.002 $x = Foo::TEST 0.006 0.000 new Foo() 0.013 0.008 $x = TEST 0.005 -0.000 $x = $_GET 0.006 0.000 $x = $GLOBALS['v'] 0.008 0.002 $x = $hash['v'] 0.006 0.000 $x = $str[0] 0.007 0.001 $x = $a ?: null 0.005 -0.000 $x = $f ?: tmp 0.008 0.002 $x = $f ? $f : $a 0.007 0.001 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.230
Output for 5.4.9
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.007 0.003 int_func() 0.006 0.002 $x = self::$x 0.006 0.002 self::$x = 0 0.006 0.002 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.001 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.004 0.001 ++$this->x 0.004 0.000 --$this->x 0.004 0.000 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.006 0.002 new Foo() 0.017 0.013 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.018 0.015 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.237
Output for 5.4.8
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.007 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.007 0.003 $x = $this->x 0.005 0.002 $this->x = 0 0.005 0.001 $this->x += 2 0.004 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.006 0.003 new Foo() 0.017 0.014 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.242
Output for 5.4.7
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.007 0.004 self::$x = 0 0.007 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.005 0.001 Foo::$x = 0 0.005 0.002 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.006 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.002 isset($this->x) 0.006 0.003 empty($this->x) 0.006 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.013 $x = TEST 0.007 0.003 $x = $_GET 0.009 0.005 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.005 0.001 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.006 0.003 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.253
Output for 5.4.6
empty_loop 0.046 func() 0.009 -0.037 undef_func() 0.008 -0.038 int_func() 0.006 -0.040 $x = self::$x 0.006 -0.040 self::$x = 0 0.007 -0.039 isset(self::$x) 0.007 -0.039 empty(self::$x) 0.007 -0.039 $x = Foo::$x 0.006 -0.040 Foo::$x = 0 0.006 -0.040 isset(Foo::$x) 0.006 -0.040 empty(Foo::$x) 0.006 -0.040 self::f() 0.010 -0.036 Foo::f() 0.009 -0.037 $x = $this->x 0.006 -0.040 $this->x = 0 0.007 -0.039 $this->x += 2 0.007 -0.039 ++$this->x 0.007 -0.039 --$this->x 0.005 -0.041 $this->x++ 0.005 -0.041 $this->x-- 0.005 -0.041 isset($this->x) 0.005 -0.041 empty($this->x) 0.005 -0.041 $this->f() 0.007 -0.039 $x = Foo::TEST 0.006 -0.040 new Foo() 0.012 -0.034 $x = TEST 0.005 -0.041 $x = $_GET 0.006 -0.040 $x = $GLOBALS['v'] 0.007 -0.039 $x = $hash['v'] 0.006 -0.040 $x = $str[0] 0.006 -0.039 $x = $a ?: null 0.005 -0.041 $x = $f ?: tmp 0.007 -0.039 $x = $f ? $f : $a 0.006 -0.040 $x = $f ? $f : tmp 0.007 -0.039 ------------------------ Total 0.270
Output for 5.4.5
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.006 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.005 0.001 ++$this->x 0.005 0.001 --$this->x 0.006 0.002 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.001 $this->f() 0.007 0.003 $x = Foo::TEST 0.005 0.002 new Foo() 0.013 0.009 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.009 0.005 $x = $a ?: null 0.006 0.002 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.004 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.246
Output for 5.4.4
empty_loop 0.044 func() 0.009 -0.034 undef_func() 0.010 -0.034 int_func() 0.008 -0.035 $x = self::$x 0.007 -0.036 self::$x = 0 0.007 -0.036 isset(self::$x) 0.007 -0.037 empty(self::$x) 0.007 -0.037 $x = Foo::$x 0.006 -0.037 Foo::$x = 0 0.006 -0.038 isset(Foo::$x) 0.006 -0.038 empty(Foo::$x) 0.005 -0.039 self::f() 0.007 -0.036 Foo::f() 0.007 -0.037 $x = $this->x 0.006 -0.038 $this->x = 0 0.005 -0.039 $this->x += 2 0.004 -0.039 ++$this->x 0.004 -0.039 --$this->x 0.004 -0.039 $this->x++ 0.005 -0.039 $this->x-- 0.005 -0.039 isset($this->x) 0.005 -0.039 empty($this->x) 0.005 -0.039 $this->f() 0.007 -0.037 $x = Foo::TEST 0.006 -0.038 new Foo() 0.011 -0.032 $x = TEST 0.005 -0.039 $x = $_GET 0.005 -0.039 $x = $GLOBALS['v'] 0.007 -0.037 $x = $hash['v'] 0.005 -0.038 $x = $str[0] 0.007 -0.037 $x = $a ?: null 0.006 -0.037 $x = $f ?: tmp 0.009 -0.035 $x = $f ? $f : $a 0.007 -0.037 $x = $f ? $f : tmp 0.009 -0.035 ------------------------ Total 0.265
Output for 5.4.3
empty_loop 0.003 func() 0.008 0.004 undef_func() 0.007 0.004 int_func() 0.006 0.003 $x = self::$x 0.006 0.003 self::$x = 0 0.007 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.003 $x = Foo::$x 0.008 0.004 Foo::$x = 0 0.009 0.005 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.005 0.001 self::f() 0.008 0.004 Foo::f() 0.007 0.003 $x = $this->x 0.006 0.002 $this->x = 0 0.005 0.002 $this->x += 2 0.005 0.001 ++$this->x 0.004 0.001 --$this->x 0.004 0.001 $this->x++ 0.005 0.001 $this->x-- 0.005 0.001 isset($this->x) 0.005 0.001 empty($this->x) 0.005 0.002 $this->f() 0.007 0.004 $x = Foo::TEST 0.005 0.002 new Foo() 0.012 0.009 $x = TEST 0.005 0.002 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.008 0.004 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.006 0.003 $x = $a ?: null 0.005 0.002 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.220
Output for 5.4.2
empty_loop 0.004 func() 0.009 0.005 undef_func() 0.010 0.006 int_func() 0.007 0.004 $x = self::$x 0.006 0.003 self::$x = 0 0.006 0.003 isset(self::$x) 0.006 0.002 empty(self::$x) 0.006 0.002 $x = Foo::$x 0.006 0.002 Foo::$x = 0 0.005 0.001 isset(Foo::$x) 0.005 0.001 empty(Foo::$x) 0.004 0.001 self::f() 0.009 0.006 Foo::f() 0.009 0.005 $x = $this->x 0.006 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.002 $this->x-- 0.006 0.003 isset($this->x) 0.006 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.017 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.009 0.005 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.249
Output for 5.4.1
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.007 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.007 0.004 $x = Foo::$x 0.007 0.003 Foo::$x = 0 0.006 0.003 isset(Foo::$x) 0.006 0.002 empty(Foo::$x) 0.006 0.002 self::f() 0.010 0.007 Foo::f() 0.009 0.005 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.005 0.002 --$this->x 0.005 0.002 $this->x++ 0.006 0.003 $this->x-- 0.006 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.003 $this->f() 0.009 0.005 $x = Foo::TEST 0.006 0.002 new Foo() 0.012 0.008 $x = TEST 0.005 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.007 0.004 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.007 0.003 $x = $a ?: null 0.006 0.003 $x = $f ?: tmp 0.009 0.005 $x = $f ? $f : $a 0.007 0.003 $x = $f ? $f : tmp 0.009 0.005 ------------------------ Total 0.249
Output for 5.4.0
empty_loop 0.014 func() 0.009 -0.006 undef_func() 0.010 -0.005 int_func() 0.008 -0.006 $x = self::$x 0.007 -0.007 self::$x = 0 0.007 -0.007 isset(self::$x) 0.007 -0.008 empty(self::$x) 0.007 -0.007 $x = Foo::$x 0.006 -0.008 Foo::$x = 0 0.006 -0.008 isset(Foo::$x) 0.006 -0.009 empty(Foo::$x) 0.006 -0.009 self::f() 0.010 -0.004 Foo::f() 0.009 -0.006 $x = $this->x 0.006 -0.008 $this->x = 0 0.007 -0.008 $this->x += 2 0.006 -0.009 ++$this->x 0.005 -0.009 --$this->x 0.005 -0.009 $this->x++ 0.006 -0.008 $this->x-- 0.010 -0.004 isset($this->x) 0.005 -0.009 empty($this->x) 0.005 -0.009 $this->f() 0.007 -0.008 $x = Foo::TEST 0.005 -0.009 new Foo() 0.012 -0.002 $x = TEST 0.005 -0.010 $x = $_GET 0.005 -0.009 $x = $GLOBALS['v'] 0.007 -0.007 $x = $hash['v'] 0.006 -0.009 $x = $str[0] 0.006 -0.008 $x = $a ?: null 0.005 -0.009 $x = $f ?: tmp 0.007 -0.007 $x = $f ? $f : $a 0.006 -0.009 $x = $f ? $f : tmp 0.007 -0.007 ------------------------ Total 0.247
Output for 5.3.29
empty_loop 0.004 func() 0.012 0.007 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.012 0.008 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.011 0.007 Foo::$x = 0 0.011 0.007 isset(Foo::$x) 0.011 0.007 empty(Foo::$x) 0.012 0.007 self::f() 0.013 0.009 Foo::f() 0.015 0.011 $x = $this->x 0.009 0.004 $this->x = 0 0.012 0.008 $this->x += 2 0.010 0.006 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.007 0.003 $this->x-- 0.007 0.003 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.002 new Foo() 0.018 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.010 0.006 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.021 0.017 $x = $f ?: tmp 0.006 0.002 $x = $f ? $f : $a 0.031 0.027 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.366
Output for 5.3.28
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.011 0.007 self::$x = 0 0.012 0.008 isset(self::$x) 0.063 0.059 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.015 0.011 empty(Foo::$x) 0.014 0.010 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.008 0.004 $this->x = 0 0.007 0.003 $this->x += 2 0.007 0.003 ++$this->x 0.007 0.002 --$this->x 0.007 0.003 $this->x++ 0.009 0.005 $this->x-- 0.009 0.005 isset($this->x) 0.009 0.004 empty($this->x) 0.009 0.005 $this->f() 0.011 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.021 0.017 $x = TEST 0.009 0.005 $x = $_GET 0.009 0.005 $x = $GLOBALS['v'] 0.014 0.010 $x = $hash['v'] 0.010 0.006 $x = $str[0] 0.013 0.009 $x = $a ?: null 0.022 0.018 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.024 0.019 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.444
Output for 5.3.27
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.009 0.004 int_func() 0.008 0.003 $x = self::$x 0.008 0.004 self::$x = 0 0.009 0.004 isset(self::$x) 0.010 0.005 empty(self::$x) 0.009 0.005 $x = Foo::$x 0.011 0.007 Foo::$x = 0 0.011 0.006 isset(Foo::$x) 0.011 0.006 empty(Foo::$x) 0.011 0.006 self::f() 0.011 0.006 Foo::f() 0.013 0.008 $x = $this->x 0.008 0.004 $this->x = 0 0.009 0.004 $this->x += 2 0.007 0.002 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.007 0.002 $this->x-- 0.007 0.002 isset($this->x) 0.007 0.003 empty($this->x) 0.008 0.003 $this->f() 0.010 0.005 $x = Foo::TEST 0.007 0.002 new Foo() 0.019 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.002 $x = $GLOBALS['v'] 0.014 0.009 $x = $hash['v'] 0.009 0.004 $x = $str[0] 0.013 0.009 $x = $a ?: null 0.033 0.029 $x = $f ?: tmp 0.009 0.004 $x = $f ? $f : $a 0.034 0.030 $x = $f ? $f : tmp 0.009 0.004 ------------------------ Total 0.365
Output for 5.3.26
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.013 0.009 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.011 0.007 isset(self::$x) 0.008 0.004 empty(self::$x) 0.010 0.006 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.015 0.011 empty(Foo::$x) 0.016 0.012 self::f() 0.015 0.011 Foo::f() 0.019 0.015 $x = $this->x 0.010 0.006 $this->x = 0 0.007 0.003 $this->x += 2 0.006 0.002 ++$this->x 0.007 0.003 --$this->x 0.006 0.002 $this->x++ 0.007 0.003 $this->x-- 0.007 0.003 isset($this->x) 0.008 0.004 empty($this->x) 0.007 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.026 0.022 $x = TEST 0.009 0.005 $x = $_GET 0.009 0.005 $x = $GLOBALS['v'] 0.014 0.010 $x = $hash['v'] 0.009 0.004 $x = $str[0] 0.013 0.009 $x = $a ?: null 0.033 0.029 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.034 0.030 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.420
Output for 5.3.25
empty_loop 0.004 func() 0.010 0.006 undef_func() 0.009 0.005 int_func() 0.009 0.005 $x = self::$x 0.010 0.007 self::$x = 0 0.008 0.005 isset(self::$x) 0.010 0.006 empty(self::$x) 0.008 0.004 $x = Foo::$x 0.012 0.008 Foo::$x = 0 0.011 0.008 isset(Foo::$x) 0.011 0.008 empty(Foo::$x) 0.011 0.007 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.009 0.005 $this->x = 0 0.009 0.006 $this->x += 2 0.009 0.005 ++$this->x 0.008 0.005 --$this->x 0.007 0.004 $this->x++ 0.008 0.004 $this->x-- 0.009 0.005 isset($this->x) 0.009 0.005 empty($this->x) 0.009 0.005 $this->f() 0.011 0.008 $x = Foo::TEST 0.008 0.004 new Foo() 0.021 0.018 $x = TEST 0.006 0.003 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.010 0.007 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.008 0.005 $x = $a ?: null 0.025 0.022 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.031 0.028 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.362
Output for 5.3.24
empty_loop 0.004 func() 0.011 0.007 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.012 0.008 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.015 0.011 empty(Foo::$x) 0.016 0.012 self::f() 0.015 0.011 Foo::f() 0.013 0.009 $x = $this->x 0.008 0.004 $this->x = 0 0.009 0.005 $this->x += 2 0.006 0.002 ++$this->x 0.008 0.004 --$this->x 0.010 0.006 $this->x++ 0.011 0.007 $this->x-- 0.011 0.007 isset($this->x) 0.011 0.007 empty($this->x) 0.011 0.007 $this->f() 0.015 0.011 $x = Foo::TEST 0.009 0.005 new Foo() 0.027 0.023 $x = TEST 0.009 0.005 $x = $_GET 0.009 0.005 $x = $GLOBALS['v'] 0.014 0.010 $x = $hash['v'] 0.009 0.005 $x = $str[0] 0.012 0.008 $x = $a ?: null 0.033 0.029 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.034 0.030 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.446
Output for 5.3.23
empty_loop 0.004 func() 0.012 0.007 undef_func() 0.012 0.008 int_func() 0.011 0.006 $x = self::$x 0.012 0.007 self::$x = 0 0.011 0.007 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.016 0.011 empty(Foo::$x) 0.016 0.012 self::f() 0.012 0.008 Foo::f() 0.013 0.009 $x = $this->x 0.008 0.004 $this->x = 0 0.011 0.007 $this->x += 2 0.010 0.006 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.006 empty($this->x) 0.011 0.006 $this->f() 0.015 0.011 $x = Foo::TEST 0.009 0.005 new Foo() 0.028 0.024 $x = TEST 0.009 0.004 $x = $_GET 0.009 0.004 $x = $GLOBALS['v'] 0.014 0.009 $x = $hash['v'] 0.008 0.004 $x = $str[0] 0.012 0.008 $x = $a ?: null 0.033 0.029 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.033 0.029 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.446
Output for 5.3.22
empty_loop 0.003 func() 0.008 0.005 undef_func() 0.008 0.005 int_func() 0.008 0.005 $x = self::$x 0.008 0.005 self::$x = 0 0.009 0.006 isset(self::$x) 0.010 0.007 empty(self::$x) 0.009 0.006 $x = Foo::$x 0.013 0.010 Foo::$x = 0 0.013 0.010 isset(Foo::$x) 0.012 0.009 empty(Foo::$x) 0.013 0.010 self::f() 0.013 0.010 Foo::f() 0.013 0.010 $x = $this->x 0.008 0.005 $this->x = 0 0.007 0.004 $this->x += 2 0.007 0.004 ++$this->x 0.006 0.003 --$this->x 0.006 0.003 $this->x++ 0.007 0.004 $this->x-- 0.008 0.005 isset($this->x) 0.007 0.004 empty($this->x) 0.007 0.004 $this->f() 0.010 0.007 $x = Foo::TEST 0.007 0.004 new Foo() 0.019 0.016 $x = TEST 0.007 0.004 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.010 0.007 $x = $hash['v'] 0.006 0.003 $x = $str[0] 0.009 0.006 $x = $a ?: null 0.021 0.018 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.022 0.019 $x = $f ? $f : tmp 0.006 0.003 ------------------------ Total 0.335
Output for 5.3.21
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.011 0.007 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.016 0.012 empty(Foo::$x) 0.016 0.012 self::f() 0.016 0.012 Foo::f() 0.019 0.015 $x = $this->x 0.010 0.006 $this->x = 0 0.011 0.007 $this->x += 2 0.010 0.006 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.006 empty($this->x) 0.008 0.004 $this->f() 0.009 0.005 $x = Foo::TEST 0.007 0.003 new Foo() 0.018 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.010 0.006 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.009 0.005 $x = $a ?: null 0.021 0.017 $x = $f ?: tmp 0.006 0.002 $x = $f ? $f : $a 0.022 0.018 $x = $f ? $f : tmp 0.006 0.002 ------------------------ Total 0.399
Output for 5.3.20
empty_loop 0.005 func() 0.010 0.006 undef_func() 0.011 0.006 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.010 0.006 isset(self::$x) 0.008 0.003 empty(self::$x) 0.009 0.005 $x = Foo::$x 0.011 0.007 Foo::$x = 0 0.011 0.006 isset(Foo::$x) 0.011 0.006 empty(Foo::$x) 0.011 0.006 self::f() 0.011 0.006 Foo::f() 0.013 0.009 $x = $this->x 0.008 0.003 $this->x = 0 0.009 0.005 $this->x += 2 0.008 0.003 ++$this->x 0.007 0.003 --$this->x 0.007 0.002 $this->x++ 0.008 0.003 $this->x-- 0.008 0.003 isset($this->x) 0.009 0.004 empty($this->x) 0.008 0.004 $this->f() 0.012 0.007 $x = Foo::TEST 0.007 0.002 new Foo() 0.022 0.017 $x = TEST 0.007 0.003 $x = $_GET 0.007 0.002 $x = $GLOBALS['v'] 0.011 0.006 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.022 0.017 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.022 0.017 $x = $f ? $f : tmp 0.006 0.002 ------------------------ Total 0.345
Output for 5.3.19
empty_loop 0.005 func() 0.011 0.006 undef_func() 0.010 0.005 int_func() 0.008 0.003 $x = self::$x 0.009 0.003 self::$x = 0 0.008 0.003 isset(self::$x) 0.008 0.003 empty(self::$x) 0.008 0.003 $x = Foo::$x 0.011 0.006 Foo::$x = 0 0.011 0.006 isset(Foo::$x) 0.011 0.006 empty(Foo::$x) 0.011 0.006 self::f() 0.010 0.005 Foo::f() 0.016 0.011 $x = $this->x 0.011 0.006 $this->x = 0 0.011 0.006 $this->x += 2 0.010 0.005 ++$this->x 0.009 0.004 --$this->x 0.009 0.004 $this->x++ 0.010 0.005 $this->x-- 0.010 0.005 isset($this->x) 0.011 0.005 empty($this->x) 0.011 0.006 $this->f() 0.015 0.010 $x = Foo::TEST 0.009 0.004 new Foo() 0.029 0.024 $x = TEST 0.009 0.004 $x = $_GET 0.017 0.012 $x = $GLOBALS['v'] 0.011 0.006 $x = $hash['v'] 0.007 0.002 $x = $str[0] 0.010 0.004 $x = $a ?: null 0.024 0.019 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.024 0.019 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.401
Output for 5.3.18
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.011 0.007 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.015 0.011 empty(Foo::$x) 0.015 0.011 self::f() 0.016 0.012 Foo::f() 0.012 0.009 $x = $this->x 0.007 0.004 $this->x = 0 0.007 0.003 $this->x += 2 0.044 0.041 ++$this->x 0.011 0.007 --$this->x 0.007 0.004 $this->x++ 0.008 0.004 $this->x-- 0.008 0.004 isset($this->x) 0.009 0.005 empty($this->x) 0.009 0.005 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.018 0.014 $x = TEST 0.006 0.003 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.011 0.007 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.009 0.005 $x = $a ?: null 0.021 0.017 $x = $f ?: tmp 0.006 0.002 $x = $f ? $f : $a 0.023 0.019 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.416
Output for 5.3.17
empty_loop 0.004 func() 0.011 0.007 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.010 0.006 isset(self::$x) 0.008 0.004 empty(self::$x) 0.008 0.004 $x = Foo::$x 0.011 0.007 Foo::$x = 0 0.011 0.007 isset(Foo::$x) 0.012 0.008 empty(Foo::$x) 0.010 0.006 self::f() 0.010 0.006 Foo::f() 0.012 0.008 $x = $this->x 0.009 0.005 $this->x = 0 0.011 0.007 $this->x += 2 0.026 0.022 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.006 empty($this->x) 0.011 0.007 $this->f() 0.012 0.008 $x = Foo::TEST 0.008 0.004 new Foo() 0.028 0.024 $x = TEST 0.009 0.005 $x = $_GET 0.009 0.004 $x = $GLOBALS['v'] 0.014 0.010 $x = $hash['v'] 0.008 0.004 $x = $str[0] 0.013 0.009 $x = $a ?: null 0.033 0.029 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.033 0.029 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.430
Output for 5.3.16
empty_loop 0.004 func() 0.013 0.009 undef_func() 0.008 0.004 int_func() 0.008 0.003 $x = self::$x 0.008 0.003 self::$x = 0 0.008 0.003 isset(self::$x) 0.007 0.003 empty(self::$x) 0.008 0.003 $x = Foo::$x 0.011 0.007 Foo::$x = 0 0.011 0.006 isset(Foo::$x) 0.011 0.006 empty(Foo::$x) 0.011 0.006 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.002 $this->x += 2 0.034 0.030 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.005 empty($this->x) 0.011 0.006 $this->f() 0.015 0.010 $x = Foo::TEST 0.009 0.005 new Foo() 0.027 0.023 $x = TEST 0.009 0.005 $x = $_GET 0.009 0.004 $x = $GLOBALS['v'] 0.014 0.009 $x = $hash['v'] 0.008 0.004 $x = $str[0] 0.012 0.008 $x = $a ?: null 0.032 0.028 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.033 0.029 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.425
Output for 5.3.15
empty_loop 0.004 func() 0.009 0.006 undef_func() 0.010 0.007 int_func() 0.009 0.005 $x = self::$x 0.010 0.007 self::$x = 0 0.009 0.006 isset(self::$x) 0.008 0.004 empty(self::$x) 0.009 0.005 $x = Foo::$x 0.013 0.010 Foo::$x = 0 0.014 0.010 isset(Foo::$x) 0.013 0.009 empty(Foo::$x) 0.012 0.008 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.007 0.004 $this->x = 0 0.007 0.003 $this->x += 2 0.027 0.023 ++$this->x 0.009 0.006 --$this->x 0.007 0.004 $this->x++ 0.008 0.005 $this->x-- 0.008 0.004 isset($this->x) 0.008 0.005 empty($this->x) 0.008 0.005 $this->f() 0.012 0.009 $x = Foo::TEST 0.012 0.009 new Foo() 0.018 0.015 $x = TEST 0.007 0.003 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.010 0.006 $x = $hash['v'] 0.007 0.003 $x = $str[0] 0.009 0.005 $x = $a ?: null 0.021 0.018 $x = $f ?: tmp 0.006 0.003 $x = $f ? $f : $a 0.023 0.019 $x = $f ? $f : tmp 0.006 0.003 ------------------------ Total 0.371
Output for 5.3.14
empty_loop 0.004 func() 0.010 0.006 undef_func() 0.010 0.005 int_func() 0.009 0.004 $x = self::$x 0.009 0.005 self::$x = 0 0.009 0.004 isset(self::$x) 0.009 0.004 empty(self::$x) 0.009 0.004 $x = Foo::$x 0.012 0.008 Foo::$x = 0 0.013 0.008 isset(Foo::$x) 0.012 0.008 empty(Foo::$x) 0.012 0.008 self::f() 0.012 0.007 Foo::f() 0.014 0.010 $x = $this->x 0.008 0.004 $this->x = 0 0.008 0.004 $this->x += 2 0.008 0.003 ++$this->x 0.007 0.003 --$this->x 0.007 0.003 $this->x++ 0.008 0.003 $this->x-- 0.008 0.004 isset($this->x) 0.008 0.004 empty($this->x) 0.009 0.004 $this->f() 0.012 0.007 $x = Foo::TEST 0.007 0.003 new Foo() 0.020 0.016 $x = TEST 0.008 0.004 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.011 0.006 $x = $hash['v'] 0.007 0.002 $x = $str[0] 0.011 0.006 $x = $a ?: null 0.025 0.020 $x = $f ?: tmp 0.007 0.003 $x = $f ? $f : $a 0.025 0.020 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.364
Output for 5.3.13
empty_loop 0.004 func() 0.011 0.007 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.011 0.007 self::$x = 0 0.011 0.007 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.011 0.007 Foo::$x = 0 0.011 0.007 isset(Foo::$x) 0.012 0.007 empty(Foo::$x) 0.012 0.008 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.007 0.003 $this->x = 0 0.007 0.003 $this->x += 2 0.007 0.003 ++$this->x 0.006 0.002 --$this->x 0.006 0.002 $this->x++ 0.007 0.003 $this->x-- 0.006 0.002 isset($this->x) 0.007 0.003 empty($this->x) 0.008 0.004 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.018 0.014 $x = TEST 0.007 0.002 $x = $_GET 0.007 0.002 $x = $GLOBALS['v'] 0.011 0.007 $x = $hash['v'] 0.008 0.004 $x = $str[0] 0.010 0.006 $x = $a ?: null 0.027 0.023 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.029 0.025 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.362
Output for 5.3.12
empty_loop 0.004 func() 0.008 0.004 undef_func() 0.009 0.005 int_func() 0.008 0.004 $x = self::$x 0.009 0.005 self::$x = 0 0.008 0.004 isset(self::$x) 0.008 0.004 empty(self::$x) 0.008 0.004 $x = Foo::$x 0.013 0.009 Foo::$x = 0 0.013 0.009 isset(Foo::$x) 0.013 0.009 empty(Foo::$x) 0.012 0.009 self::f() 0.014 0.010 Foo::f() 0.014 0.011 $x = $this->x 0.009 0.005 $this->x = 0 0.007 0.004 $this->x += 2 0.007 0.003 ++$this->x 0.006 0.002 --$this->x 0.007 0.003 $this->x++ 0.008 0.004 $this->x-- 0.007 0.003 isset($this->x) 0.008 0.005 empty($this->x) 0.008 0.004 $this->f() 0.011 0.007 $x = Foo::TEST 0.007 0.004 new Foo() 0.019 0.015 $x = TEST 0.006 0.003 $x = $_GET 0.006 0.003 $x = $GLOBALS['v'] 0.010 0.006 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.009 0.006 $x = $a ?: null 0.022 0.018 $x = $f ?: tmp 0.006 0.002 $x = $f ? $f : $a 0.022 0.018 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.341
Output for 5.3.11
empty_loop 0.006 func() 0.008 0.002 undef_func() 0.010 0.004 int_func() 0.010 0.004 $x = self::$x 0.012 0.005 self::$x = 0 0.012 0.005 isset(self::$x) 0.011 0.005 empty(self::$x) 0.011 0.005 $x = Foo::$x 0.016 0.010 Foo::$x = 0 0.016 0.010 isset(Foo::$x) 0.016 0.010 empty(Foo::$x) 0.016 0.010 self::f() 0.014 0.008 Foo::f() 0.013 0.007 $x = $this->x 0.008 0.002 $this->x = 0 0.009 0.003 $this->x += 2 0.008 0.002 ++$this->x 0.008 0.002 --$this->x 0.007 0.001 $this->x++ 0.007 0.001 $this->x-- 0.008 0.002 isset($this->x) 0.008 0.002 empty($this->x) 0.009 0.003 $this->f() 0.011 0.005 $x = Foo::TEST 0.008 0.002 new Foo() 0.023 0.017 $x = TEST 0.008 0.002 $x = $_GET 0.007 0.001 $x = $GLOBALS['v'] 0.012 0.006 $x = $hash['v'] 0.007 0.001 $x = $str[0] 0.011 0.005 $x = $a ?: null 0.026 0.020 $x = $f ?: tmp 0.007 0.001 $x = $f ? $f : $a 0.027 0.021 $x = $f ? $f : tmp 0.007 0.001 ------------------------ Total 0.396
Output for 5.3.10
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.011 0.007 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.008 0.004 empty(self::$x) 0.008 0.004 $x = Foo::$x 0.013 0.009 Foo::$x = 0 0.011 0.007 isset(Foo::$x) 0.011 0.007 empty(Foo::$x) 0.011 0.007 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.010 0.006 $this->x = 0 0.011 0.007 $this->x += 2 0.010 0.006 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.006 empty($this->x) 0.011 0.007 $this->f() 0.015 0.011 $x = Foo::TEST 0.009 0.005 new Foo() 0.028 0.024 $x = TEST 0.009 0.005 $x = $_GET 0.009 0.005 $x = $GLOBALS['v'] 0.014 0.010 $x = $hash['v'] 0.008 0.004 $x = $str[0] 0.013 0.009 $x = $a ?: null 0.032 0.028 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.033 0.029 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.412
Output for 5.3.9
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.012 0.008 int_func() 0.008 0.004 $x = self::$x 0.008 0.004 self::$x = 0 0.008 0.004 isset(self::$x) 0.007 0.003 empty(self::$x) 0.008 0.004 $x = Foo::$x 0.011 0.007 Foo::$x = 0 0.011 0.007 isset(Foo::$x) 0.010 0.006 empty(Foo::$x) 0.011 0.007 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.007 0.003 $this->x = 0 0.008 0.004 $this->x += 2 0.010 0.006 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.006 empty($this->x) 0.011 0.007 $this->f() 0.015 0.011 $x = Foo::TEST 0.009 0.005 new Foo() 0.028 0.024 $x = TEST 0.008 0.004 $x = $_GET 0.009 0.005 $x = $GLOBALS['v'] 0.017 0.013 $x = $hash['v'] 0.007 0.002 $x = $str[0] 0.010 0.006 $x = $a ?: null 0.024 0.020 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.023 0.019 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.382
Output for 5.3.8
empty_loop 0.005 func() 0.009 0.004 undef_func() 0.010 0.005 int_func() 0.008 0.003 $x = self::$x 0.009 0.004 self::$x = 0 0.009 0.004 isset(self::$x) 0.008 0.003 empty(self::$x) 0.008 0.003 $x = Foo::$x 0.012 0.007 Foo::$x = 0 0.012 0.007 isset(Foo::$x) 0.011 0.006 empty(Foo::$x) 0.012 0.007 self::f() 0.012 0.007 Foo::f() 0.014 0.009 $x = $this->x 0.008 0.003 $this->x = 0 0.009 0.003 $this->x += 2 0.007 0.002 ++$this->x 0.007 0.001 --$this->x 0.007 0.001 $this->x++ 0.007 0.002 $this->x-- 0.007 0.002 isset($this->x) 0.008 0.003 empty($this->x) 0.008 0.003 $this->f() 0.012 0.006 $x = Foo::TEST 0.007 0.002 new Foo() 0.020 0.015 $x = TEST 0.007 0.002 $x = $_GET 0.007 0.002 $x = $GLOBALS['v'] 0.010 0.005 $x = $hash['v'] 0.007 0.001 $x = $str[0] 0.009 0.004 $x = $a ?: null 0.024 0.019 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.025 0.020 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.350
Output for 5.3.7
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.011 0.007 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.016 0.012 empty(Foo::$x) 0.016 0.012 self::f() 0.016 0.012 Foo::f() 0.019 0.015 $x = $this->x 0.011 0.007 $this->x = 0 0.011 0.007 $this->x += 2 0.010 0.006 ++$this->x 0.010 0.006 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.006 empty($this->x) 0.009 0.005 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.018 0.014 $x = TEST 0.007 0.003 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.010 0.006 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.025 0.021 $x = $f ?: tmp 0.006 0.002 $x = $f ? $f : $a 0.027 0.023 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.411
Output for 5.3.6
empty_loop 0.004 func() 0.012 0.008 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.012 0.008 self::$x = 0 0.011 0.007 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.015 0.011 empty(Foo::$x) 0.013 0.009 self::f() 0.011 0.007 Foo::f() 0.013 0.009 $x = $this->x 0.007 0.004 $this->x = 0 0.007 0.003 $this->x += 2 0.009 0.005 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.009 0.006 $this->x-- 0.010 0.006 isset($this->x) 0.010 0.006 empty($this->x) 0.011 0.007 $this->f() 0.015 0.011 $x = Foo::TEST 0.009 0.005 new Foo() 0.028 0.024 $x = TEST 0.008 0.005 $x = $_GET 0.008 0.005 $x = $GLOBALS['v'] 0.014 0.010 $x = $hash['v'] 0.008 0.004 $x = $str[0] 0.013 0.009 $x = $a ?: null 0.033 0.029 $x = $f ?: tmp 0.008 0.004 $x = $f ? $f : $a 0.034 0.030 $x = $f ? $f : tmp 0.008 0.004 ------------------------ Total 0.435
Output for 5.3.5
empty_loop 0.007 func() 0.008 0.001 undef_func() 0.008 0.002 int_func() 0.008 0.001 $x = self::$x 0.008 0.002 self::$x = 0 0.008 0.002 isset(self::$x) 0.008 0.001 empty(self::$x) 0.008 0.001 $x = Foo::$x 0.011 0.005 Foo::$x = 0 0.011 0.004 isset(Foo::$x) 0.011 0.005 empty(Foo::$x) 0.011 0.005 self::f() 0.010 0.004 Foo::f() 0.012 0.006 $x = $this->x 0.007 0.001 $this->x = 0 0.007 0.000 $this->x += 2 0.007 0.000 ++$this->x 0.006 -0.000 --$this->x 0.006 -0.001 $this->x++ 0.007 0.001 $this->x-- 0.007 0.000 isset($this->x) 0.007 0.001 empty($this->x) 0.008 0.001 $this->f() 0.010 0.003 $x = Foo::TEST 0.007 0.000 new Foo() 0.018 0.012 $x = TEST 0.006 -0.000 $x = $_GET 0.006 -0.000 $x = $GLOBALS['v'] 0.010 0.003 $x = $hash['v'] 0.006 -0.000 $x = $str[0] 0.009 0.002 $x = $a ?: null 0.022 0.015 $x = $f ?: tmp 0.006 -0.000 $x = $f ? $f : $a 0.022 0.016 $x = $f ? $f : tmp 0.007 -0.000 ------------------------ Total 0.323
Output for 5.3.4
empty_loop 0.005 func() 0.010 0.006 undef_func() 0.010 0.005 int_func() 0.008 0.004 $x = self::$x 0.010 0.006 self::$x = 0 0.009 0.004 isset(self::$x) 0.008 0.004 empty(self::$x) 0.009 0.004 $x = Foo::$x 0.013 0.009 Foo::$x = 0 0.013 0.008 isset(Foo::$x) 0.013 0.008 empty(Foo::$x) 0.012 0.008 self::f() 0.012 0.007 Foo::f() 0.018 0.014 $x = $this->x 0.012 0.007 $this->x = 0 0.008 0.003 $this->x += 2 0.007 0.002 ++$this->x 0.007 0.002 --$this->x 0.006 0.002 $this->x++ 0.007 0.003 $this->x-- 0.007 0.002 isset($this->x) 0.008 0.003 empty($this->x) 0.008 0.003 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.002 new Foo() 0.019 0.014 $x = TEST 0.007 0.002 $x = $_GET 0.007 0.002 $x = $GLOBALS['v'] 0.010 0.005 $x = $hash['v'] 0.008 0.003 $x = $str[0] 0.011 0.006 $x = $a ?: null 0.024 0.019 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.023 0.018 $x = $f ? $f : tmp 0.007 0.002 ------------------------ Total 0.360
Output for 5.3.3
empty_loop 0.004 func() 0.011 0.007 undef_func() 0.012 0.008 int_func() 0.010 0.006 $x = self::$x 0.011 0.007 self::$x = 0 0.011 0.007 isset(self::$x) 0.011 0.007 empty(self::$x) 0.011 0.007 $x = Foo::$x 0.016 0.012 Foo::$x = 0 0.016 0.012 isset(Foo::$x) 0.016 0.012 empty(Foo::$x) 0.015 0.011 self::f() 0.016 0.012 Foo::f() 0.019 0.015 $x = $this->x 0.010 0.007 $this->x = 0 0.011 0.007 $this->x += 2 0.011 0.007 ++$this->x 0.009 0.005 --$this->x 0.009 0.005 $this->x++ 0.010 0.006 $this->x-- 0.009 0.005 isset($this->x) 0.007 0.003 empty($this->x) 0.007 0.004 $this->f() 0.010 0.006 $x = Foo::TEST 0.007 0.003 new Foo() 0.018 0.014 $x = TEST 0.006 0.002 $x = $_GET 0.007 0.003 $x = $GLOBALS['v'] 0.010 0.006 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.008 0.004 $x = $a ?: null 0.022 0.018 $x = $f ?: tmp 0.006 0.002 $x = $f ? $f : $a 0.025 0.021 $x = $f ? $f : tmp 0.007 0.003 ------------------------ Total 0.396
Output for 5.3.2
empty_loop 0.003 func() 0.010 0.006 undef_func() 0.010 0.006 int_func() 0.008 0.005 $x = self::$x 0.009 0.006 self::$x = 0 0.009 0.006 isset(self::$x) 0.008 0.005 empty(self::$x) 0.009 0.006 $x = Foo::$x 0.013 0.010 Foo::$x = 0 0.012 0.009 isset(Foo::$x) 0.012 0.008 empty(Foo::$x) 0.012 0.008 self::f() 0.013 0.009 Foo::f() 0.014 0.010 $x = $this->x 0.008 0.005 $this->x = 0 0.008 0.005 $this->x += 2 0.008 0.004 ++$this->x 0.007 0.004 --$this->x 0.007 0.003 $this->x++ 0.008 0.004 $this->x-- 0.008 0.004 isset($this->x) 0.008 0.005 empty($this->x) 0.008 0.005 $this->f() 0.011 0.007 $x = Foo::TEST 0.008 0.005 new Foo() 0.022 0.019 $x = TEST 0.007 0.004 $x = $_GET 0.007 0.004 $x = $GLOBALS['v'] 0.012 0.009 $x = $hash['v'] 0.007 0.004 $x = $str[0] 0.009 0.006 $x = $a ?: null 0.024 0.021 $x = $f ?: tmp 0.007 0.004 $x = $f ? $f : $a 0.025 0.021 $x = $f ? $f : tmp 0.007 0.004 ------------------------ Total 0.358
Output for 5.3.1
empty_loop 0.005 func() 0.008 0.004 undef_func() 0.008 0.003 int_func() 0.008 0.003 $x = self::$x 0.009 0.004 self::$x = 0 0.008 0.003 isset(self::$x) 0.009 0.004 empty(self::$x) 0.008 0.003 $x = Foo::$x 0.012 0.008 Foo::$x = 0 0.014 0.009 isset(Foo::$x) 0.011 0.006 empty(Foo::$x) 0.013 0.008 self::f() 0.011 0.006 Foo::f() 0.016 0.011 $x = $this->x 0.008 0.003 $this->x = 0 0.008 0.003 $this->x += 2 0.007 0.002 ++$this->x 0.006 0.001 --$this->x 0.007 0.003 $this->x++ 0.009 0.005 $this->x-- 0.007 0.002 isset($this->x) 0.007 0.003 empty($this->x) 0.008 0.003 $this->f() 0.010 0.005 $x = Foo::TEST 0.008 0.003 new Foo() 0.021 0.016 $x = TEST 0.007 0.002 $x = $_GET 0.008 0.003 $x = $GLOBALS['v'] 0.012 0.007 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.010 0.005 $x = $a ?: null 0.026 0.022 $x = $f ?: tmp 0.008 0.003 $x = $f ? $f : $a 0.025 0.020 $x = $f ? $f : tmp 0.008 0.003 ------------------------ Total 0.355
Output for 5.3.0
empty_loop 0.005 func() 0.012 0.007 undef_func() 0.008 0.004 int_func() 0.008 0.003 $x = self::$x 0.008 0.003 self::$x = 0 0.008 0.003 isset(self::$x) 0.008 0.003 empty(self::$x) 0.008 0.003 $x = Foo::$x 0.011 0.006 Foo::$x = 0 0.011 0.006 isset(Foo::$x) 0.011 0.006 empty(Foo::$x) 0.011 0.006 self::f() 0.010 0.005 Foo::f() 0.013 0.008 $x = $this->x 0.008 0.003 $this->x = 0 0.007 0.002 $this->x += 2 0.007 0.002 ++$this->x 0.006 0.001 --$this->x 0.006 0.001 $this->x++ 0.007 0.002 $this->x-- 0.007 0.002 isset($this->x) 0.007 0.002 empty($this->x) 0.008 0.003 $this->f() 0.010 0.005 $x = Foo::TEST 0.007 0.002 new Foo() 0.018 0.013 $x = TEST 0.006 0.001 $x = $_GET 0.006 0.002 $x = $GLOBALS['v'] 0.010 0.005 $x = $hash['v'] 0.006 0.002 $x = $str[0] 0.009 0.004 $x = $a ?: null 0.021 0.017 $x = $f ?: tmp 0.007 0.002 $x = $f ? $f : $a 0.022 0.017 $x = $f ? $f : tmp 0.006 0.002 ------------------------ Total 0.322

preferences:
348.28 ms | 404 KiB | 406 Q