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 hallo2() {} function simpleucall($n) { for ($i = 0; $i < $n; $i++) hallo(); } function simpleudcall($n) { for ($i = 0; $i < $n; $i++) 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.7
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.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.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.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.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.029
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.001 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.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.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.028
Output for 8.3.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.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.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.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.000 ------------------------ Total 0.035
Output for 8.3.4
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.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.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.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.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.000 $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.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.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.028
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.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.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.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.001 0.000 new Foo() 0.001 0.001 $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.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.019
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.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.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.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.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.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.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.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.036
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.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.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.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.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.029
Output for 8.2.16
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.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.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.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.000 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.027
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.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.001 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.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.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.000 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.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.014
Output for 8.1.25, 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.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.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.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.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.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.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.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.028
Output for 8.2.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.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.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.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.020
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.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.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.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.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.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.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.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.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.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.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.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.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.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.001 0.000 ------------------------ Total 0.019
Output for 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.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.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.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.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.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.2
empty_loop 0.000 func() 0.001 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.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.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.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.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.000 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.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.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.001 0.000 ------------------------ Total 0.019
Output for 8.2.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.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.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.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.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.002 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.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.002 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.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.042
Output for 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.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.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.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.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.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.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.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.027
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.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.001 0.000 $this->x++ 0.000 0.000 $this->x-- 0.001 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.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.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.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.001 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.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.020
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.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.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.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.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.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.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.001 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.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.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.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.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.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.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.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.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.000 0.000 ------------------------ Total 0.018
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.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.001 ++$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.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.019
Output for 8.1.13, 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.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.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.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.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.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.000 $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.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.021
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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.1.4 - 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.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.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.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.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.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.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.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.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.000 $x = $hash['v'] 0.001 0.000 $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.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.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.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.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.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.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.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.001 $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.019
Output for 8.0.29
empty_loop 0.000 func() 0.001 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.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.28
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.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.001 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.27
empty_loop 0.000 func() 0.001 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.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.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.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.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.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.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.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.021
Output for 8.0.25
empty_loop 0.000 func() 0.001 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.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.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.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.24
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.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.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.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.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.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.020
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.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.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.000 0.000 ------------------------ Total 0.020
Output for 8.0.21
empty_loop 0.000 func() 0.001 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.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.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.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.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.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.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.000 0.000 $x = $f ? $f : tmp 0.000 0.000 ------------------------ Total 0.020
Output for 8.0.15, 8.0.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.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.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.5, 8.0.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.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.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.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.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 8.0.6, 8.0.11 - 8.0.14, 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.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.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.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.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.001 $x = $hash['v'] 0.001 0.000 $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.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.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.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.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.028
Output for 8.0.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.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.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.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.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.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.041
Output for 8.0.2
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.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.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.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.002 0.001 $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.051
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.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.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.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.031
Output for 8.0.0
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.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.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.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.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.33
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.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.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.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.022
Output for 7.4.32
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.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.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.021
Output for 7.4.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.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.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.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.022
Output for 7.4.29
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.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.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.4.28
empty_loop 0.000 func() 0.001 0.001 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.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.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.27
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.000 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.030
Output for 7.4.26
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.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.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.25
empty_loop 0.000 func() 0.001 0.001 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.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.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.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.032
Output for 7.4.24
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.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.001 $x = $hash['v'] 0.001 0.000 $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.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.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.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.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.002 $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.006 0.006 $x = TEST 0.001 0.001 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.003 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.047
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.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.000 ------------------------ Total 0.038
Output for 7.4.20
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.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.19
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.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.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.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.000 0.000 $x = $_GET 0.001 0.001 $x = $GLOBALS['v'] 0.004 0.003 $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.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.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.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.002 0.002 $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.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 7.4.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.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.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.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.000 ------------------------ Total 0.037
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.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.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.002 0.002 ++$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.001 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.004 $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.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.047
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.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.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.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.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.035
Output for 7.4.11
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.000 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.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.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.036
Output for 7.4.10
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.001 0.001 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.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.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.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.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.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.035
Output for 7.4.8
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.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.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.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.039
Output for 7.4.7
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.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.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.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.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.003 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.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.002 0.002 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.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.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
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.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.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.002 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.000 $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.041
Output for 7.4.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.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.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.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.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.002 0.002 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.001 self::f() 0.001 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.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.000 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.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.037
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.002 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.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.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.035
Output for 7.3.33
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.001 0.000 int_func() 0.001 0.000 $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.000 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.002 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.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.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.035
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.000 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.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.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.000 $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.031
Output for 7.3.30
empty_loop 0.000 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.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.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.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.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.002 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.040
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.003 0.003 $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.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.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.002 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.005 0.005 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.001 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.052
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.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.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.041
Output for 7.3.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.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.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.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.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.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.002 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.055
Output for 7.3.25
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.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.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.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.002 $x = $hash['v'] 0.001 0.001 $x = $str[0] 0.001 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.042
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.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.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.041
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.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.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.040
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.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.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.001 ------------------------ Total 0.039
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.001 $x = self::$x 0.002 0.001 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.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.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.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.002 $this->f() 0.002 0.001 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.067
Output for 7.3.19
empty_loop 0.001 func() 0.002 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.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.001 0.001 Foo::$x = 0 0.002 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.001 $this->x = 0 0.001 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.004 0.003 $this->f() 0.002 0.002 $x = Foo::TEST 0.002 0.002 new Foo() 0.007 0.006 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.002 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.18
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.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.000 ------------------------ Total 0.038
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.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.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.038
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.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.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.007 0.006 Foo::f() 0.002 0.002 $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.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.002 0.002 $this->f() 0.002 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.001 0.001 $x = $a ?: null 0.002 0.002 $x = $f ?: tmp 0.002 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.002 ------------------------ Total 0.066
Output for 7.3.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.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.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.048
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.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.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.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.10
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.000 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.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.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.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.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.8
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.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.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.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.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.033
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.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.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.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.3.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.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.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.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.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.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.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.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.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.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.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.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.033
Output for 7.3.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.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.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.033
Output for 7.3.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.001 0.000 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.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.001 ------------------------ Total 0.033
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.000 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.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.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.2.33
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.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.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.002 0.001 $x = $this->x 0.001 0.001 $this->x = 0 0.001 0.001 $this->x += 2 0.002 0.002 ++$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.001 0.001 empty($this->x) 0.001 0.001 $this->f() 0.002 0.001 $x = Foo::TEST 0.002 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.002 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.057
Output for 7.2.32
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.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.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.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.003 0.003 $x = $hash['v'] 0.002 0.002 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.048
Output for 7.2.31
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.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.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.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.002 $this->f() 0.002 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.005 0.004 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.002 $x = $GLOBALS['v'] 0.003 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.000 $x = $f ? $f : $a 0.001 0.001 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.065
Output for 7.2.30
empty_loop 0.000 func() 0.001 0.001 undef_func() 0.003 0.002 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.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.001 $this->x = 0 0.001 0.000 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.000 --$this->x 0.002 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.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.001 0.001 $x = $f ?: tmp 0.001 0.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.049
Output for 7.2.29
empty_loop 0.001 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.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.000 $this->x++ 0.001 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.002 0.002 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.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.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.043
Output for 7.2.25
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.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.002 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.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.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.052
Output for 7.2.24
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.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.001 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.040
Output for 7.2.18, 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.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.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.22
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.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.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.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.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.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.038
Output for 7.2.20
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.000 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.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.2.19
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.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.036
Output for 7.2.17
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.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.035
Output for 7.2.6
empty_loop 0.000 func() 0.002 0.001 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.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.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.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.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.032
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.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.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.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.001 new Foo() 0.002 0.002 $x = TEST 0.001 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.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.029
Output for 7.1.33
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.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.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.090
Output for 7.1.32
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.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.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.1.31
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.004 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.003 0.002 Foo::$x = 0 0.003 0.002 isset(Foo::$x) 0.003 0.002 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.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.001 $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.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.093
Output for 7.1.30
empty_loop 0.002 func() 0.003 0.001 undef_func() 0.003 0.001 int_func() 0.002 0.001 $x = self::$x 0.002 0.000 self::$x = 0 0.002 0.000 isset(self::$x) 0.002 0.000 empty(self::$x) 0.002 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.001 Foo::f() 0.003 0.001 $x = $this->x 0.002 -0.000 $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.000 $this->x-- 0.002 0.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $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.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.084
Output for 7.1.29
empty_loop 0.001 func() 0.003 0.003 undef_func() 0.003 0.003 int_func() 0.003 0.002 $x = self::$x 0.002 0.001 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.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.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.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.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.088
Output for 7.1.28
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.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.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.001 $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.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.084
Output for 7.1.27
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.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.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.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.089
Output for 7.1.26
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.002 $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.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.082
Output for 7.1.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.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.002 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.000 new Foo() 0.003 0.002 $x = TEST 0.001 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.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 7.1.10
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.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.002 $x = Foo::TEST 0.001 0.001 new Foo() 0.006 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.001 0.000 $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.053
Output for 7.1.7
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.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.001 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.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.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.048
Output for 7.1.6
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.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.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.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.003 0.003 $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.003 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.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.060
Output for 7.1.5
empty_loop 0.001 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.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.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.003 0.003 $this->f() 0.002 0.001 $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.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.050
Output for 7.1.0
empty_loop 0.001 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.002 0.001 $x = Foo::$x 0.002 0.002 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.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.002 0.002 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.004 $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.002 0.001 $x = $a ?: null 0.001 0.000 $x = $f ?: tmp 0.002 0.002 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.001 ------------------------ Total 0.053
Output for 7.0.20
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.000 empty(self::$x) 0.001 0.000 $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.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.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.001 $this->f() 0.002 0.002 $x = Foo::TEST 0.001 0.001 new Foo() 0.005 0.004 $x = TEST 0.001 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.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.041
Output for 7.0.14
empty_loop 0.000 func() 0.003 0.002 undef_func() 0.003 0.002 int_func() 0.002 0.002 $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.001 self::f() 0.002 0.002 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.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.002 $this->f() 0.002 0.001 $x = Foo::TEST 0.001 0.001 new Foo() 0.004 0.004 $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.002 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.051
Output for 7.0.10
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.002 0.002 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.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.000 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.041
Output for 7.0.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.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.000 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.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.0.8
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.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.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.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.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.038
Output for 7.0.7
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.001 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.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.002 0.001 $this->f() 0.001 0.001 $x = Foo::TEST 0.001 0.000 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.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.039
Output for 7.0.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.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.000 $this->x++ 0.001 0.000 $this->x-- 0.001 0.000 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.000 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.001 $x = $f ? $f : $a 0.001 0.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.037
Output for 7.0.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.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.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.000 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.000 $x = $f ? $f : tmp 0.001 0.000 ------------------------ Total 0.038
Output for 7.0.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.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.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.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.000 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.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.042
Output for 7.0.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.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.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.000 new Foo() 0.004 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.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 7.0.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.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.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.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.031
Output for 7.0.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.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.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.003 0.002 empty($this->x) 0.002 0.002 $this->f() 0.002 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.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.041
Output for 7.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.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.001 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.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.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.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.025
Output for 5.6.28
empty_loop 0.002 func() 0.005 0.003 undef_func() 0.005 0.003 int_func() 0.004 0.002 $x = self::$x 0.003 0.002 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.003 0.001 Foo::$x = 0 0.003 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.004 0.002 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.001 $this->x += 2 0.003 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.001 $this->f() 0.004 0.003 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 0.006 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.004 0.002 ------------------------ Total 0.106
Output for 5.6.25
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.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.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.003 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.002 $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.002 0.001 ------------------------ Total 0.072
Output for 5.6.24
empty_loop 0.002 func() 0.007 0.005 undef_func() 0.004 0.003 int_func() 0.004 0.002 $x = self::$x 0.003 0.001 self::$x = 0 0.003 0.001 isset(self::$x) 0.002 0.000 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.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.000 $this->x = 0 0.003 0.001 $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.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $this->f() 0.004 0.002 $x = Foo::TEST 0.002 -0.000 new Foo() 0.006 0.004 $x = TEST 0.002 -0.000 $x = $_GET 0.002 0.000 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.000 $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.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.095
Output for 5.6.23
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.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 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.002 0.001 new Foo() 0.006 0.004 $x = TEST 0.001 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.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.086
Output for 5.6.22
empty_loop 0.001 func() 0.003 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.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.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.003 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.078
Output for 5.6.21
empty_loop 0.001 func() 0.003 0.002 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.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.077
Output for 5.6.20
empty_loop 0.001 func() 0.004 0.002 undef_func() 0.004 0.002 int_func() 0.003 0.002 $x = self::$x 0.003 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.000 isset(Foo::$x) 0.002 0.000 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.001 $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.000 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.002 0.000 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.078
Output for 5.6.19
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.004 0.003 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $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.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.004 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.001 $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 5.6.18
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.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.000 empty(Foo::$x) 0.002 0.000 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.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.000 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 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.002 0.001 $x = $f ? $f : $a 0.002 0.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.085
Output for 5.6.17
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.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.001 0.000 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.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.001 0.000 new Foo() 0.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.067
Output for 5.6.16
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 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.000 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.080
Output for 5.6.15
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.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.002 $x = Foo::$x 0.003 0.002 Foo::$x = 0 0.003 0.002 isset(Foo::$x) 0.002 0.002 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.003 0.002 $this->x-- 0.003 0.002 isset($this->x) 0.002 0.002 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.009 0.008 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.002 $x = $f ?: tmp 0.003 0.003 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.089
Output for 5.6.14
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.002 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.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.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.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.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.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.002 $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.002 0.001 ------------------------ Total 0.066
Output for 5.6.13
empty_loop 0.001 func() 0.002 0.002 undef_func() 0.002 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.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.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.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.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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.065
Output for 5.6.12
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.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.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.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.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.001 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.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.068
Output for 5.6.11
empty_loop 0.001 func() 0.003 0.002 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.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $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.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.080
Output for 5.6.10
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.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.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.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.074
Output for 5.6.9
empty_loop 0.002 func() 0.005 0.003 undef_func() 0.004 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.000 empty(Foo::$x) 0.002 0.001 self::f() 0.004 0.003 Foo::f() 0.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 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.000 empty($this->x) 0.002 0.001 $this->f() 0.004 0.003 $x = Foo::TEST 0.002 0.000 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.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.091
Output for 5.6.8
empty_loop 0.002 func() 0.005 0.003 undef_func() 0.005 0.003 int_func() 0.004 0.002 $x = self::$x 0.003 0.002 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.003 0.001 Foo::$x = 0 0.003 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.005 0.003 Foo::f() 0.004 0.003 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.002 $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.004 0.003 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 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.003 0.002 $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.102
Output for 5.6.7
empty_loop 0.002 func() 0.005 0.003 undef_func() 0.005 0.003 int_func() 0.004 0.002 $x = self::$x 0.003 0.002 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.003 0.001 Foo::$x = 0 0.003 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.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.003 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.004 0.003 $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.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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.101
Output for 5.6.6
empty_loop 0.002 func() 0.005 0.003 undef_func() 0.005 0.003 int_func() 0.004 0.002 $x = self::$x 0.003 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.000 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.003 0.001 $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.000 empty($this->x) 0.002 0.000 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.005 0.004 $x = TEST 0.001 -0.000 $x = $_GET 0.002 0.000 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.000 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.000 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.087
Output for 5.6.5
empty_loop 0.001 func() 0.003 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.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.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.002 0.001 $x = $str[0] 0.003 0.002 $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.085
Output for 5.6.4
empty_loop 0.002 func() 0.005 0.004 undef_func() 0.004 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.002 Foo::f() 0.003 0.001 $x = $this->x 0.002 0.000 $this->x = 0 0.002 0.001 $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.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.006 0.004 $x = TEST 0.001 -0.000 $x = $_GET 0.002 0.000 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.000 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.000 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.087
Output for 5.6.3
empty_loop 0.001 func() 0.003 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.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.000 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.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.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.076
Output for 5.6.2
empty_loop 0.002 func() 0.004 0.003 undef_func() 0.004 0.002 int_func() 0.003 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.000 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.002 $x = $this->x 0.002 0.000 $this->x = 0 0.003 0.001 $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.000 empty($this->x) 0.002 0.000 $this->f() 0.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.004 $x = TEST 0.001 -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.091
Output for 5.6.1
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.002 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.003 0.002 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.003 0.003 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.002 --$this->x 0.003 0.002 $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.003 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.002 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.004 0.003 $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.002 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.092
Output for 5.6.0
empty_loop 0.001 func() 0.003 0.002 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.003 0.002 $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.004 0.003 $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.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.080
Output for 5.5.38
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.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.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 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.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.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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.091
Output for 5.5.37
empty_loop 0.001 func() 0.004 0.002 undef_func() 0.004 0.002 int_func() 0.003 0.002 $x = self::$x 0.003 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.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 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.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.087
Output for 5.5.36
empty_loop 0.001 func() 0.002 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.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.001 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 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.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.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.069
Output for 5.5.12, 5.5.35
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.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.002 0.001 new Foo() 0.006 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.002 0.001 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.002 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.075
Output for 5.5.34
empty_loop 0.001 func() 0.005 0.003 undef_func() 0.005 0.003 int_func() 0.003 0.002 $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.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.003 0.001 self::f() 0.005 0.003 Foo::f() 0.004 0.003 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.001 $this->x += 2 0.003 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.004 0.003 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 0.006 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.097
Output for 5.5.33
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.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.001 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.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.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.001 $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.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.070
Output for 5.5.32
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.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.000 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.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.000 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.006 0.005 $x = TEST 0.001 -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.002 0.001 ------------------------ Total 0.083
Output for 5.5.31
empty_loop 0.001 func() 0.004 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.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.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.002 0.001 new Foo() 0.006 0.004 $x = TEST 0.001 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.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.076
Output for 5.5.30
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.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.000 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.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.002 0.001 new Foo() 0.006 0.004 $x = TEST 0.001 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.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.084
Output for 5.5.29
empty_loop 0.001 func() 0.002 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.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.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.002 0.001 $this->x = 0 0.002 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.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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.067
Output for 5.5.28
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.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.000 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.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.002 0.000 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.001 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.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.084
Output for 5.5.27
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.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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.079
Output for 5.5.26
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.001 0.000 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.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.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.067
Output for 5.5.25
empty_loop 0.001 func() 0.005 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $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.003 0.001 Foo::$x = 0 0.003 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.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.003 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.004 0.003 $x = Foo::TEST 0.002 0.001 new Foo() 0.008 0.006 $x = TEST 0.002 0.000 $x = $_GET 0.003 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.103
Output for 5.5.24
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.083
Output for 5.5.23
empty_loop 0.002 func() 0.006 0.004 undef_func() 0.006 0.004 int_func() 0.005 0.003 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.003 0.001 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.003 0.001 Foo::$x = 0 0.003 0.001 isset(Foo::$x) 0.003 0.001 empty(Foo::$x) 0.003 0.001 self::f() 0.005 0.003 Foo::f() 0.005 0.003 $x = $this->x 0.003 0.001 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.005 0.003 $x = Foo::TEST 0.003 0.001 new Foo() 0.009 0.007 $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.004 0.002 $x = $a ?: null 0.003 0.000 $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.124
Output for 5.5.22
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.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.004 0.002 Foo::f() 0.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $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.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 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.002 0.001 $x = $str[0] 0.003 0.002 $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.092
Output for 5.5.21
empty_loop 0.001 func() 0.005 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $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.003 0.001 Foo::$x = 0 0.003 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.004 0.002 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.002 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.002 0.001 $this->x++ 0.003 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.004 0.003 $x = Foo::TEST 0.002 0.001 new Foo() 0.008 0.006 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.102
Output for 5.5.20
empty_loop 0.001 func() 0.003 0.002 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.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.000 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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 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.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.083
Output for 5.5.19
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.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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.002 ------------------------ Total 0.074
Output for 5.5.18
empty_loop 0.001 func() 0.003 0.002 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.003 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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 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.002 $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.002 0.001 ------------------------ Total 0.083
Output for 5.5.16
empty_loop 0.002 func() 0.004 0.002 undef_func() 0.004 0.003 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.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.000 empty(Foo::$x) 0.002 0.000 self::f() 0.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.001 $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.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $this->f() 0.004 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.007 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.003 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.002 0.001 ------------------------ Total 0.093
Output for 5.5.15
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $x = self::$x 0.004 0.003 self::$x = 0 0.003 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.000 empty(Foo::$x) 0.002 0.000 self::f() 0.003 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.000 $this->x-- 0.002 0.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.006 0.005 $x = TEST 0.001 -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.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.088
Output for 5.5.14
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.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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.076
Output for 5.5.13
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.082
Output for 5.5.11
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.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.003 0.002 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.001 0.001 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.076
Output for 5.5.10
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.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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.002 ------------------------ Total 0.076
Output for 5.5.9
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.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.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.002 0.001 $this->x = 0 0.002 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.003 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.062
Output for 5.5.8
empty_loop 0.001 func() 0.003 0.002 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.003 0.002 $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.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.080
Output for 5.5.7
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.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.002 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.002 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.001 0.000 --$this->x 0.001 0.000 $this->x++ 0.002 0.001 $this->x-- 0.001 0.000 isset($this->x) 0.001 0.000 empty($this->x) 0.002 0.001 $this->f() 0.002 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.063
Output for 5.5.6
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.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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.002 ------------------------ Total 0.075
Output for 5.5.5
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.002 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.000 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.002 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.003 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.061
Output for 5.5.4
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.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.000 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.002 0.001 $this->x += 2 0.002 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.003 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.062
Output for 5.5.3
empty_loop 0.001 func() 0.002 0.002 undef_func() 0.002 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.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.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.001 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.001 0.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $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.002 0.001 $x = $str[0] 0.002 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.002 0.001 ------------------------ Total 0.062
Output for 5.5.2
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.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.002 0.001 new Foo() 0.005 0.005 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $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.002 0.002 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.075
Output for 5.5.1
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.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.001 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.001 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.001 isset($this->x) 0.001 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.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.068
Output for 5.5.0
empty_loop 0.001 func() 0.002 0.002 undef_func() 0.002 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.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.002 $x = $this->x 0.001 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.001 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.001 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.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.002 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.002 0.001 ------------------------ Total 0.062
Output for 5.4.45
empty_loop 0.001 func() 0.003 0.002 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.001 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.002 0.001 ++$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.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.003 0.002 $x = $a ?: null 0.002 0.001 $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.076
Output for 5.4.44
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.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.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 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.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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.067
Output for 5.4.43
empty_loop 0.001 func() 0.002 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.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.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 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.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.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.002 0.001 $x = $str[0] 0.002 0.002 $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.002 0.001 ------------------------ Total 0.067
Output for 5.4.42
empty_loop 0.002 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $x = self::$x 0.003 0.002 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.003 0.001 Foo::$x = 0 0.003 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.004 0.002 $x = $this->x 0.003 0.001 $this->x = 0 0.003 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.002 0.001 $this->f() 0.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 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.002 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.100
Output for 5.4.41
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $x = self::$x 0.004 0.002 self::$x = 0 0.003 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.003 0.001 self::f() 0.004 0.002 Foo::f() 0.004 0.003 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.002 ++$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.007 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.002 0.001 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.003 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.099
Output for 5.4.40
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.004 0.002 int_func() 0.003 0.002 $x = self::$x 0.004 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.002 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.003 0.001 Foo::$x = 0 0.002 0.001 isset(Foo::$x) 0.003 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.004 0.003 Foo::f() 0.005 0.004 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.002 --$this->x 0.003 0.001 $this->x++ 0.003 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.004 0.003 $x = Foo::TEST 0.002 0.001 new Foo() 0.008 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.001 $x = $str[0] 0.003 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.004 0.002 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.109
Output for 5.4.39
empty_loop 0.001 func() 0.003 0.002 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.004 0.003 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $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.001 0.000 $x = $_GET 0.003 0.001 $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.088
Output for 5.4.38
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.083
Output for 5.4.37
empty_loop 0.001 func() 0.003 0.002 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.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $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.003 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.078
Output for 5.4.36
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $x = self::$x 0.003 0.002 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.003 0.001 Foo::$x = 0 0.003 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.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.001 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.003 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.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 0.005 $x = TEST 0.002 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.100
Output for 5.4.35
empty_loop 0.001 func() 0.004 0.002 undef_func() 0.004 0.002 int_func() 0.003 0.001 $x = self::$x 0.002 0.001 self::$x = 0 0.002 0.001 isset(self::$x) 0.002 0.000 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.000 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.001 $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.004 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.000 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.082
Output for 5.4.34
empty_loop 0.001 func() 0.003 0.002 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.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $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.003 0.002 $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.002 0.002 ------------------------ Total 0.074
Output for 5.4.32
empty_loop 0.001 func() 0.003 0.002 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.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.001 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.002 $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.002 0.001 ------------------------ Total 0.082
Output for 5.4.31
empty_loop 0.002 func() 0.005 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $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.003 0.001 Foo::$x = 0 0.003 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.004 0.002 $x = $this->x 0.003 0.001 $this->x = 0 0.003 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.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 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.002 0.001 $x = $str[0] 0.003 0.002 $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.102
Output for 5.4.30
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.075
Output for 5.4.29
empty_loop 0.001 func() 0.004 0.002 undef_func() 0.004 0.002 int_func() 0.004 0.002 $x = self::$x 0.003 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.003 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.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.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.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.003 0.002 $x = $str[0] 0.005 0.003 $x = $a ?: null 0.003 0.002 $x = $f ?: tmp 0.004 0.003 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.092
Output for 5.4.28
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.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.001 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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.003 $x = $hash['v'] 0.002 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.002 0.001 $x = $f ? $f : tmp 0.003 0.002 ------------------------ Total 0.078
Output for 5.4.27
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.001 $x = $_GET 0.002 0.001 $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.002 0.001 ------------------------ Total 0.076
Output for 5.4.26
empty_loop 0.001 func() 0.003 0.002 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.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.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.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.077
Output for 5.4.25
empty_loop 0.001 func() 0.003 0.002 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.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 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.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.002 0.001 $x = $f ? $f : tmp 0.002 0.002 ------------------------ Total 0.077
Output for 5.4.24
empty_loop 0.001 func() 0.004 0.002 undef_func() 0.004 0.002 int_func() 0.003 0.002 $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.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.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 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.002 0.001 new Foo() 0.006 0.005 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.086
Output for 5.4.23
empty_loop 0.001 func() 0.004 0.002 undef_func() 0.004 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.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.001 $this->x = 0 0.002 0.001 $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.000 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.004 $x = TEST 0.001 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.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.078
Output for 5.4.22
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.000 $x = $_GET 0.002 0.001 $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.075
Output for 5.4.21
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.002 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.001 0.001 empty(Foo::$x) 0.001 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.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.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.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.002 $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.002 0.001 ------------------------ Total 0.068
Output for 5.4.20
empty_loop 0.001 func() 0.002 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.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.001 0.001 empty(Foo::$x) 0.001 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.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.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.002 0.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.004 0.003 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.070
Output for 5.4.19
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.000 $x = $_GET 0.002 0.001 $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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.077
Output for 5.4.18
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.001 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.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.001 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.001 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.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 0.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.062
Output for 5.4.17
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 0.001 Foo::$x = 0 0.001 0.001 isset(Foo::$x) 0.001 0.000 empty(Foo::$x) 0.001 0.001 self::f() 0.003 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.001 0.001 ++$this->x 0.001 0.001 --$this->x 0.001 0.000 $this->x++ 0.002 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.003 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.062
Output for 5.4.16
empty_loop 0.001 func() 0.002 0.002 undef_func() 0.002 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.001 0.001 empty(self::$x) 0.002 0.001 $x = Foo::$x 0.002 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.002 0.001 $this->x = 0 0.002 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.002 0.002 $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.002 0.001 $x = $str[0] 0.002 0.002 $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.002 0.001 ------------------------ Total 0.062
Output for 5.4.15
empty_loop 0.001 func() 0.002 0.002 undef_func() 0.002 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.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.000 empty(Foo::$x) 0.001 0.001 self::f() 0.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.001 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.001 0.001 empty($this->x) 0.001 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.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.001 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.061
Output for 5.4.14
empty_loop 0.001 func() 0.002 0.001 undef_func() 0.002 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.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.002 0.002 Foo::f() 0.002 0.001 $x = $this->x 0.002 0.001 $this->x = 0 0.002 0.001 $this->x += 2 0.001 0.001 ++$this->x 0.002 0.001 --$this->x 0.001 0.000 $this->x++ 0.002 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.004 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.002 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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.061
Output for 5.4.13
empty_loop 0.001 func() 0.003 0.002 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.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.001 0.001 $x = $_GET 0.002 0.001 $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.080
Output for 5.4.12
empty_loop 0.001 func() 0.003 0.002 undef_func() 0.002 0.002 int_func() 0.002 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.001 0.001 empty(Foo::$x) 0.001 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.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.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.001 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.002 0.002 $x = $a ?: null 0.001 0.001 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.066
Output for 5.4.11
empty_loop 0.001 func() 0.005 0.003 undef_func() 0.004 0.003 int_func() 0.003 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.000 $x = Foo::$x 0.002 0.000 Foo::$x = 0 0.002 0.000 isset(Foo::$x) 0.001 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.002 0.001 $this->x += 2 0.002 0.000 ++$this->x 0.002 0.000 --$this->x 0.002 0.001 $this->x++ 0.002 0.001 $this->x-- 0.002 0.000 isset($this->x) 0.002 0.001 empty($this->x) 0.003 0.002 $this->f() 0.005 0.004 $x = Foo::TEST 0.002 0.001 new Foo() 0.010 0.008 $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.004 0.003 $x = $a ?: null 0.003 0.001 $x = $f ?: tmp 0.004 0.003 $x = $f ? $f : $a 0.003 0.002 $x = $f ? $f : tmp 0.004 0.002 ------------------------ Total 0.094
Output for 5.4.10
empty_loop 0.001 func() 0.003 0.002 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.001 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $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.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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.076
Output for 5.4.9
empty_loop 0.002 func() 0.005 0.003 undef_func() 0.005 0.003 int_func() 0.005 0.003 $x = self::$x 0.003 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.004 0.002 Foo::f() 0.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.001 $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.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.006 0.004 $x = TEST 0.001 -0.000 $x = $_GET 0.002 0.000 $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.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.090
Output for 5.4.8
empty_loop 0.001 func() 0.003 0.002 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.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.004 0.002 Foo::f() 0.003 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $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.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.085
Output for 5.4.7
empty_loop 0.002 func() 0.005 0.004 undef_func() 0.004 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.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.004 0.002 $x = $this->x 0.002 0.000 $this->x = 0 0.002 0.001 $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.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $this->f() 0.003 0.001 $x = Foo::TEST 0.002 0.000 new Foo() 0.006 0.004 $x = TEST 0.001 -0.000 $x = $_GET 0.002 0.000 $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.002 0.001 $x = $f ? $f : $a 0.002 0.000 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.087
Output for 5.4.6
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.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.004 0.002 Foo::f() 0.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $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.000 new Foo() 0.005 0.004 $x = TEST 0.001 0.000 $x = $_GET 0.002 0.001 $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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.088
Output for 5.4.5
empty_loop 0.001 func() 0.003 0.002 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.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.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.084
Output for 5.4.4
empty_loop 0.002 func() 0.005 0.004 undef_func() 0.005 0.003 int_func() 0.005 0.003 $x = self::$x 0.004 0.002 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.003 0.001 Foo::$x = 0 0.003 0.001 isset(Foo::$x) 0.002 0.001 empty(Foo::$x) 0.002 0.001 self::f() 0.005 0.003 Foo::f() 0.005 0.003 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.002 $this->x += 2 0.002 0.001 ++$this->x 0.002 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 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.004 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.007 0.006 $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.002 $x = $a ?: null 0.002 0.001 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.002 0.000 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.112
Output for 5.4.3
empty_loop 0.002 func() 0.004 0.003 undef_func() 0.004 0.002 int_func() 0.003 0.002 $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.003 0.001 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.002 $x = $this->x 0.002 0.000 $this->x = 0 0.002 0.001 $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.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.000 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.006 0.004 $x = TEST 0.001 -0.000 $x = $_GET 0.002 0.000 $x = $GLOBALS['v'] 0.003 0.001 $x = $hash['v'] 0.002 0.000 $x = $str[0] 0.003 0.001 $x = $a ?: null 0.002 0.000 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.002 0.000 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.084
Output for 5.4.2
empty_loop 0.002 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.003 $x = self::$x 0.003 0.002 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.003 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.004 0.003 $x = $this->x 0.003 0.001 $this->x = 0 0.004 0.003 $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.004 0.002 $x = Foo::TEST 0.002 0.001 new Foo() 0.007 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.003 0.002 $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.102
Output for 5.4.1
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.003 int_func() 0.004 0.002 $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.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.004 0.002 $x = $this->x 0.002 0.001 $this->x = 0 0.003 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.004 0.002 $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.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.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.093
Output for 5.4.0
empty_loop 0.001 func() 0.004 0.003 undef_func() 0.004 0.002 int_func() 0.003 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.000 empty(Foo::$x) 0.002 0.000 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.000 --$this->x 0.002 0.000 $this->x++ 0.002 0.001 $this->x-- 0.002 0.000 isset($this->x) 0.002 0.000 empty($this->x) 0.002 0.001 $this->f() 0.003 0.002 $x = Foo::TEST 0.002 0.000 new Foo() 0.005 0.004 $x = TEST 0.001 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.002 0.001 $x = $f ? $f : $a 0.002 0.001 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.078
Output for 5.3.29
empty_loop 0.002 func() 0.008 0.006 undef_func() 0.006 0.004 int_func() 0.003 0.002 $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.004 0.002 Foo::$x = 0 0.007 0.005 isset(Foo::$x) 0.008 0.006 empty(Foo::$x) 0.004 0.002 self::f() 0.007 0.005 Foo::f() 0.008 0.006 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.005 0.003 $this->x-- 0.005 0.003 isset($this->x) 0.004 0.002 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.017 0.015 $x = TEST 0.003 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.006 0.004 $x = $a ?: null 0.018 0.016 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.014 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.182
Output for 5.3.28
empty_loop 0.001 func() 0.006 0.005 undef_func() 0.005 0.004 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.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.004 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.007 0.006 Foo::f() 0.007 0.006 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.002 --$this->x 0.003 0.002 $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.007 0.006 $x = Foo::TEST 0.003 0.002 new Foo() 0.011 0.010 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.004 0.003 $x = $a ?: null 0.013 0.012 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.013 0.012 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.148
Output for 5.3.27
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.005 0.004 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.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.004 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.006 0.005 Foo::f() 0.007 0.006 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $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.003 0.001 empty($this->x) 0.003 0.002 $this->f() 0.006 0.005 $x = Foo::TEST 0.002 0.001 new Foo() 0.011 0.010 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $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.012 0.011 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.012 0.011 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.136
Output for 5.3.26
empty_loop 0.001 func() 0.006 0.005 undef_func() 0.006 0.005 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.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.004 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.007 0.006 Foo::f() 0.008 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.002 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.002 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.006 0.005 $x = Foo::TEST 0.002 0.001 new Foo() 0.011 0.010 $x = TEST 0.003 0.001 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.004 0.003 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.003 $x = $a ?: null 0.013 0.011 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.013 0.012 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.150
Output for 5.3.25
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.005 0.004 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.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.004 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.006 0.005 Foo::f() 0.007 0.006 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $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.003 0.002 $this->f() 0.006 0.005 $x = Foo::TEST 0.002 0.001 new Foo() 0.010 0.009 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $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.013 0.012 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.012 0.011 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.133
Output for 5.3.24
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.005 0.004 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.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.004 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.006 0.005 Foo::f() 0.007 0.006 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $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.006 0.005 $x = Foo::TEST 0.002 0.001 new Foo() 0.011 0.010 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $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.012 0.011 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.012 0.011 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.141
Output for 5.3.23
empty_loop 0.001 func() 0.005 0.004 undef_func() 0.006 0.005 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.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.003 0.002 empty(Foo::$x) 0.005 0.004 self::f() 0.006 0.005 Foo::f() 0.007 0.006 $x = $this->x 0.002 0.001 $this->x = 0 0.003 0.002 $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.003 0.002 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.006 0.005 $x = Foo::TEST 0.002 0.001 new Foo() 0.011 0.010 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $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.012 0.011 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.012 0.011 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.139
Output for 5.3.22
empty_loop 0.002 func() 0.009 0.007 undef_func() 0.008 0.007 int_func() 0.004 0.003 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.004 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.005 0.004 Foo::$x = 0 0.005 0.004 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.004 self::f() 0.008 0.007 Foo::f() 0.010 0.008 $x = $this->x 0.004 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.006 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.014 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.179
Output for 5.3.21
empty_loop 0.002 func() 0.010 0.008 undef_func() 0.010 0.008 int_func() 0.005 0.003 $x = self::$x 0.005 0.003 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.003 empty(self::$x) 0.005 0.003 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.006 0.004 isset(Foo::$x) 0.006 0.004 empty(Foo::$x) 0.006 0.004 self::f() 0.010 0.008 Foo::f() 0.008 0.007 $x = $this->x 0.003 0.001 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.014 0.012 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.000 ------------------------ Total 0.187
Output for 5.3.20
empty_loop 0.002 func() 0.009 0.007 undef_func() 0.008 0.007 int_func() 0.004 0.003 $x = self::$x 0.004 0.003 self::$x = 0 0.004 0.003 isset(self::$x) 0.004 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.005 0.004 Foo::$x = 0 0.005 0.004 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.003 self::f() 0.009 0.007 Foo::f() 0.010 0.008 $x = $this->x 0.003 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.002 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.007 0.006 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.014 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.183
Output for 5.3.19
empty_loop 0.002 func() 0.009 0.007 undef_func() 0.008 0.006 int_func() 0.004 0.002 $x = self::$x 0.004 0.002 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.003 empty(self::$x) 0.006 0.004 $x = Foo::$x 0.007 0.005 Foo::$x = 0 0.007 0.005 isset(Foo::$x) 0.004 0.002 empty(Foo::$x) 0.004 0.002 self::f() 0.011 0.009 Foo::f() 0.008 0.006 $x = $this->x 0.003 0.001 $this->x = 0 0.006 0.004 $this->x += 2 0.005 0.003 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.012 0.010 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.000 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.014 0.012 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.014 0.012 $x = $f ? $f : tmp 0.002 0.000 ------------------------ Total 0.188
Output for 5.3.18
empty_loop 0.001 func() 0.008 0.006 undef_func() 0.007 0.006 int_func() 0.003 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.005 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.007 0.006 Foo::f() 0.008 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.012 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.003 $x = $a ?: null 0.014 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.014 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.164
Output for 5.3.17
empty_loop 0.002 func() 0.010 0.008 undef_func() 0.010 0.008 int_func() 0.008 0.006 $x = self::$x 0.006 0.005 self::$x = 0 0.006 0.004 isset(self::$x) 0.006 0.004 empty(self::$x) 0.007 0.005 $x = Foo::$x 0.005 0.004 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.003 self::f() 0.008 0.007 Foo::f() 0.010 0.008 $x = $this->x 0.005 0.003 $this->x = 0 0.007 0.005 $this->x += 2 0.004 0.002 ++$this->x 0.005 0.003 --$this->x 0.005 0.003 $this->x++ 0.004 0.003 $this->x-- 0.005 0.003 isset($this->x) 0.004 0.002 empty($this->x) 0.004 0.002 $this->f() 0.009 0.008 $x = Foo::TEST 0.003 0.001 new Foo() 0.012 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.014 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.014 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.208
Output for 5.3.16
empty_loop 0.002 func() 0.008 0.007 undef_func() 0.008 0.006 int_func() 0.004 0.002 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.004 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.005 0.004 Foo::$x = 0 0.005 0.004 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.008 0.006 Foo::f() 0.009 0.007 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 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.004 0.003 $x = $a ?: null 0.015 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.014 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.173
Output for 5.3.15
empty_loop 0.001 func() 0.006 0.005 undef_func() 0.007 0.006 int_func() 0.004 0.002 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.004 0.003 $x = Foo::$x 0.005 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.003 self::f() 0.007 0.006 Foo::f() 0.009 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.002 0.001 new Foo() 0.012 0.010 $x = TEST 0.002 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.013 0.011 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.013 0.012 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.158
Output for 5.3.14
empty_loop 0.001 func() 0.007 0.006 undef_func() 0.007 0.006 int_func() 0.004 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.005 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.003 self::f() 0.007 0.006 Foo::f() 0.008 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.002 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.012 0.011 $x = TEST 0.003 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.004 0.002 $x = $a ?: null 0.014 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.014 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.165
Output for 5.3.13
empty_loop 0.002 func() 0.010 0.008 undef_func() 0.009 0.007 int_func() 0.005 0.003 $x = self::$x 0.005 0.002 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.006 0.004 isset(Foo::$x) 0.006 0.004 empty(Foo::$x) 0.006 0.004 self::f() 0.010 0.007 Foo::f() 0.011 0.008 $x = $this->x 0.004 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.004 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.004 0.001 $this->f() 0.008 0.006 $x = Foo::TEST 0.003 0.001 new Foo() 0.014 0.012 $x = TEST 0.003 0.001 $x = $_GET 0.003 0.000 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.014 0.012 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.014 0.012 $x = $f ? $f : tmp 0.002 0.000 ------------------------ Total 0.196
Output for 5.3.12
empty_loop 0.002 func() 0.010 0.008 undef_func() 0.009 0.007 int_func() 0.005 0.003 $x = self::$x 0.004 0.003 self::$x = 0 0.005 0.003 isset(self::$x) 0.004 0.003 empty(self::$x) 0.005 0.003 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.006 0.004 isset(Foo::$x) 0.006 0.005 empty(Foo::$x) 0.006 0.005 self::f() 0.009 0.007 Foo::f() 0.011 0.009 $x = $this->x 0.004 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.004 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.002 $this->x++ 0.003 0.001 $this->x-- 0.004 0.002 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.008 0.007 $x = Foo::TEST 0.003 0.001 new Foo() 0.015 0.013 $x = TEST 0.003 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.005 0.003 $x = $a ?: null 0.017 0.015 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.016 0.014 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.203
Output for 5.3.11
empty_loop 0.002 func() 0.011 0.008 undef_func() 0.010 0.007 int_func() 0.005 0.003 $x = self::$x 0.007 0.005 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.002 empty(self::$x) 0.005 0.002 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.006 0.004 isset(Foo::$x) 0.006 0.004 empty(Foo::$x) 0.006 0.004 self::f() 0.010 0.008 Foo::f() 0.011 0.009 $x = $this->x 0.004 0.002 $this->x = 0 0.005 0.003 $this->x += 2 0.004 0.002 ++$this->x 0.004 0.001 --$this->x 0.003 0.001 $this->x++ 0.004 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.004 0.001 empty($this->x) 0.004 0.002 $this->f() 0.009 0.006 $x = Foo::TEST 0.003 0.001 new Foo() 0.015 0.013 $x = TEST 0.003 0.001 $x = $_GET 0.003 0.001 $x = $GLOBALS['v'] 0.005 0.003 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.005 0.002 $x = $a ?: null 0.017 0.015 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.017 0.014 $x = $f ? $f : tmp 0.003 0.000 ------------------------ Total 0.216
Output for 5.3.10
empty_loop 0.002 func() 0.010 0.008 undef_func() 0.009 0.008 int_func() 0.005 0.003 $x = self::$x 0.005 0.003 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.003 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.005 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.003 self::f() 0.008 0.006 Foo::f() 0.010 0.008 $x = $this->x 0.003 0.001 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 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.004 0.002 $x = $a ?: null 0.015 0.013 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.185
Output for 5.3.9
empty_loop 0.002 func() 0.008 0.007 undef_func() 0.008 0.006 int_func() 0.004 0.003 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.003 isset(self::$x) 0.004 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.005 0.004 Foo::$x = 0 0.005 0.004 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.004 self::f() 0.008 0.007 Foo::f() 0.010 0.008 $x = $this->x 0.003 0.001 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 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.004 0.002 $x = $a ?: null 0.015 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.178
Output for 5.3.8
empty_loop 0.001 func() 0.007 0.005 undef_func() 0.007 0.005 int_func() 0.004 0.002 $x = self::$x 0.004 0.002 self::$x = 0 0.003 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.004 0.003 $x = Foo::$x 0.005 0.003 Foo::$x = 0 0.005 0.004 isset(Foo::$x) 0.005 0.004 empty(Foo::$x) 0.005 0.004 self::f() 0.008 0.006 Foo::f() 0.009 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.005 0.003 $x = $a ?: null 0.016 0.015 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.015 0.014 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.172
Output for 5.3.7
empty_loop 0.001 func() 0.006 0.005 undef_func() 0.006 0.005 int_func() 0.003 0.002 $x = self::$x 0.003 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.003 0.002 empty(self::$x) 0.003 0.002 $x = Foo::$x 0.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.004 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.007 0.006 Foo::f() 0.008 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 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.007 0.006 $x = Foo::TEST 0.003 0.002 new Foo() 0.013 0.012 $x = TEST 0.003 0.002 $x = $_GET 0.003 0.002 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.005 0.003 $x = $a ?: null 0.016 0.015 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.016 0.014 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.167
Output for 5.3.6
empty_loop 0.001 func() 0.006 0.004 undef_func() 0.006 0.005 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.004 0.003 Foo::$x = 0 0.004 0.003 isset(Foo::$x) 0.004 0.003 empty(Foo::$x) 0.004 0.003 self::f() 0.007 0.006 Foo::f() 0.008 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 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.001 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.002 new Foo() 0.012 0.010 $x = TEST 0.003 0.002 $x = $_GET 0.002 0.001 $x = $GLOBALS['v'] 0.003 0.002 $x = $hash['v'] 0.002 0.001 $x = $str[0] 0.004 0.003 $x = $a ?: null 0.015 0.013 $x = $f ?: tmp 0.002 0.001 $x = $f ? $f : $a 0.014 0.012 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.151
Output for 5.3.5
empty_loop 0.002 func() 0.008 0.006 undef_func() 0.007 0.006 int_func() 0.004 0.002 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.004 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.005 0.003 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.003 self::f() 0.007 0.006 Foo::f() 0.009 0.007 $x = $this->x 0.003 0.002 $this->x = 0 0.003 0.002 $this->x += 2 0.003 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.002 empty($this->x) 0.003 0.002 $this->f() 0.007 0.006 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.012 $x = TEST 0.003 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.004 0.003 $x = $a ?: null 0.015 0.014 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.015 0.014 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.173
Output for 5.3.4
empty_loop 0.002 func() 0.010 0.008 undef_func() 0.009 0.007 int_func() 0.005 0.003 $x = self::$x 0.005 0.003 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.003 empty(self::$x) 0.004 0.003 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.006 0.004 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.004 self::f() 0.009 0.007 Foo::f() 0.010 0.008 $x = $this->x 0.003 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 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.004 0.002 $x = $a ?: null 0.016 0.014 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.016 0.014 $x = $f ? $f : tmp 0.002 0.001 ------------------------ Total 0.187
Output for 5.3.3
empty_loop 0.002 func() 0.011 0.008 undef_func() 0.010 0.008 int_func() 0.005 0.003 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.005 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.004 0.002 Foo::$x = 0 0.004 0.002 isset(Foo::$x) 0.005 0.002 empty(Foo::$x) 0.005 0.003 self::f() 0.008 0.005 Foo::f() 0.009 0.007 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.001 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.003 0.000 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.015 0.013 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.000 ------------------------ Total 0.181
Output for 5.3.2
empty_loop 0.002 func() 0.011 0.009 undef_func() 0.010 0.008 int_func() 0.005 0.003 $x = self::$x 0.006 0.004 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.003 empty(self::$x) 0.005 0.003 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.007 0.004 isset(Foo::$x) 0.008 0.006 empty(Foo::$x) 0.010 0.008 self::f() 0.010 0.008 Foo::f() 0.010 0.008 $x = $this->x 0.004 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.004 0.002 ++$this->x 0.003 0.001 --$this->x 0.004 0.001 $this->x++ 0.004 0.002 $this->x-- 0.004 0.001 isset($this->x) 0.004 0.002 empty($this->x) 0.004 0.002 $this->f() 0.008 0.006 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.000 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.001 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.015 0.013 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.000 ------------------------ Total 0.209
Output for 5.3.1
empty_loop 0.002 func() 0.011 0.008 undef_func() 0.010 0.008 int_func() 0.005 0.003 $x = self::$x 0.005 0.003 self::$x = 0 0.005 0.003 isset(self::$x) 0.005 0.003 empty(self::$x) 0.005 0.003 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.005 0.003 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.005 0.003 self::f() 0.009 0.007 Foo::f() 0.009 0.007 $x = $this->x 0.003 0.001 $this->x = 0 0.003 0.001 $this->x += 2 0.003 0.001 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.013 0.011 $x = TEST 0.003 0.001 $x = $_GET 0.002 0.000 $x = $GLOBALS['v'] 0.004 0.002 $x = $hash['v'] 0.003 0.000 $x = $str[0] 0.004 0.002 $x = $a ?: null 0.015 0.013 $x = $f ?: tmp 0.002 0.000 $x = $f ? $f : $a 0.015 0.013 $x = $f ? $f : tmp 0.002 0.000 ------------------------ Total 0.191
Output for 5.3.0
empty_loop 0.002 func() 0.009 0.007 undef_func() 0.009 0.006 int_func() 0.005 0.003 $x = self::$x 0.004 0.002 self::$x = 0 0.004 0.002 isset(self::$x) 0.004 0.002 empty(self::$x) 0.004 0.002 $x = Foo::$x 0.006 0.004 Foo::$x = 0 0.006 0.004 isset(Foo::$x) 0.005 0.003 empty(Foo::$x) 0.006 0.004 self::f() 0.009 0.007 Foo::f() 0.010 0.008 $x = $this->x 0.004 0.002 $this->x = 0 0.004 0.002 $this->x += 2 0.004 0.002 ++$this->x 0.003 0.001 --$this->x 0.003 0.001 $this->x++ 0.003 0.001 $this->x-- 0.003 0.001 isset($this->x) 0.003 0.001 empty($this->x) 0.003 0.001 $this->f() 0.007 0.005 $x = Foo::TEST 0.003 0.001 new Foo() 0.014 0.012 $x = TEST 0.003 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.005 0.003 $x = $a ?: null 0.016 0.014 $x = $f ?: tmp 0.003 0.001 $x = $f ? $f : $a 0.016 0.014 $x = $f ? $f : tmp 0.003 0.001 ------------------------ Total 0.194

preferences:
244.23 ms | 404 KiB | 333 Q