3v4l.org

run code in 300+ PHP versions simultaneously
<?php $start = microtime(true); $y = 0; //dummy printf("<br>dummy#0 RESULT %d, DONE IN %f", $y, microtime(true) - $start); $start = microtime(true); $y = 0; for($i = 0; $i < $count; $i++) { eval('$y++;'); } printf("<br>eval++#0 RESULT %d, DONE IN %f", $y, microtime(true) - $start); $start = microtime(true); $y = 0; for($i = 0; $i < $count; $i++) { ++$y; } printf("<br>#1 RESULT %d, DONE IN %f", $y, microtime(true) - $start); $start = microtime(true); $y = 0; for($i = 0; $i < $count; $i++) { ++$y; } printf("<br>#0 RESULT %d, DONE IN %f", $y, microtime(true) - $start); $start = microtime(true); $y = 0; for($i = 0; $i < $count; $i++) { eval('++$y;'); } printf("<br>++eval#1 RESULT %d, DONE IN %f", $y, microtime(true) - $start);
Output for 7.4.0
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000022 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.3.12
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000021 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.3.11
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.3.10
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.16, 7.3.9
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.3.8
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.3.7
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.3.6
<br>dummy#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.3.5
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000006
Output for 7.3.4
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000021 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.1.0, 7.3.3
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.3.2
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.3.1
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.3.0
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.2.20, 7.2.25
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.24
<br>dummy#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.23
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.22
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000013
Output for 7.2.21
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000005
Output for 7.2.19
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.18
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.17
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.13
<br>dummy#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.12
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.11
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.2.10
<br>dummy#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.9
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.8
<br>dummy#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.2.7
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.6
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.5
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.4
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.3
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.2
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.2.1
<br>dummy#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.2.0
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.1.33
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.1.32
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.1.31
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000019 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.1.30
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.1.29
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.1.28
<br>dummy#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000005
Output for 7.1.27
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.1.26
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.1.25
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.1.7
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.1.6
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.1.5
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.20, 5.4.30, 5.5.25 - 5.5.26, 5.6.6, 7.0.20
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.14
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.10
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.9
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.8
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.13, 5.5.20, 7.0.7
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.6
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.5
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.4
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.17, 5.4.36, 7.0.3
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.2
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.1
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.0.0
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.7, 5.2.10 - 5.2.11, 5.4.39, 5.6.28
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.6, 5.5.23, 5.5.31, 5.6.25
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.12, 5.4.27, 5.5.4, 5.5.7, 5.5.34, 5.6.1, 5.6.5, 5.6.24
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.22, 5.3.27, 5.6.23
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.6.12, 5.6.22
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.21
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.9, 5.4.2, 5.6.20
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.19
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.18
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.5, 5.3.10, 5.6.17
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.16, 5.3.26, 5.4.4, 5.4.26, 5.4.28, 5.4.41, 5.5.15, 5.6.16
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.6.15
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.14
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.6.13
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.11
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.6.10
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.9
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.6.8
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.32, 5.5.38, 5.6.7
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.13, 5.6.4
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.17, 5.6.3
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.18, 5.4.22, 5.5.2, 5.5.37, 5.6.2
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.32, 5.5.18, 5.6.0
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.36
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.5.35
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.33
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.30
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.29
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.28
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.5.27
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.24
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.5.22
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.3, 5.5.21
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.29, 5.5.19
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.16
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.18, 5.5.14
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.13
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.44, 5.5.12
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.11
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.10
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.5.9
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.23, 5.4.21, 5.5.8
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.2, 5.5.6
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.16, 5.5.5
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.14, 5.4.6 - 5.4.7, 5.5.3
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.10, 5.4.23, 5.5.1
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.15, 5.5.0
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.45
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.43
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.42
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.40
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.38
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.37
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.35
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.34
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.31
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.25, 5.4.14, 5.4.19, 5.4.25
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.24
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.20
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.12
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.11
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.9
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.8
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.5
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.3
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.1
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.0
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.29
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.28
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.9, 5.3.24
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.21
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.19
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.3.15
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.11
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.8
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.7
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.1, 5.3.4
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.1
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.0
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.17
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.15
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.14
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.13
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 5.2.12
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.8
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.6
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.5
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.4
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.3
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 5.2.2
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.0
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.1.6
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 5.1.5
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.1.4
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.1.3
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.1.2
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.1.1
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.1.0
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.0.5
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.0.4
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.0.3
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000008
Output for 5.0.2
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.0.1
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 5.0.0
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 4.4.9
<br>dummy#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.4.8
<br>dummy#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.4.7
<br>dummy#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000007
Output for 4.4.6
<br>dummy#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000005
Output for 4.4.5
<br>dummy#0 RESULT 0, DONE IN 0.000021 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.4.4
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.4.3
<br>dummy#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000006
Output for 4.4.2
<br>dummy#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.4.1
<br>dummy#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000006
Output for 4.4.0
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 4.3.11
<br>dummy#0 RESULT 0, DONE IN 0.000021 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.10
<br>dummy#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.9
<br>dummy#0 RESULT 0, DONE IN 0.000029 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000007
Output for 4.3.8
<br>dummy#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000006
Output for 4.3.7
<br>dummy#0 RESULT 0, DONE IN 0.000019 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.6
<br>dummy#0 RESULT 0, DONE IN 0.000027 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.5
<br>dummy#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000005
Output for 4.3.4
<br>dummy#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.3.3
<br>dummy#0 RESULT 0, DONE IN 0.000019 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.2
<br>dummy#0 RESULT 0, DONE IN 0.000027 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000013
Output for 4.3.1
<br>dummy#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.0
<br>dummy#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yi22k on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yi22k on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yi22k on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yi22k on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000005

preferences:
136.13 ms | 402 KiB | 261 Q