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>no++#1 RESULT %d, DONE IN %f", $y, microtime(true) - $start); $start = microtime(true); $y = 0; for($i = 0; $i < $count; $i++) { $y; } printf("<br>++no#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.3.1
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.2, 5.5.29, 7.3.0
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.2.13
<br>dummy#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.12
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.2.11
<br>dummy#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000006
Output for 7.2.10
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.9
<br>dummy#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.8
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.7
<br>dummy#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.5 - 7.2.6
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI 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.000009 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 7.2.3
<br>dummy#0 RESULT 0, DONE IN 0.000019 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.2.2
<br>dummy#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.2.1
<br>dummy#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.2.0
<br>dummy#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI 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/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.1.7
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI 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.000005 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.1.5
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 7.1.0
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.20
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.14
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.0, 5.6.20, 7.0.12
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.6
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/JdlMI 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.000000 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.38, 5.5.32, 7.0.4
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.3
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.2
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.29, 5.4.25, 5.4.32, 5.4.43, 5.6.18, 7.0.1
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.0
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.28
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 5.2.3, 5.4.18, 5.5.26, 5.6.21
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.6.19
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.6.17
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.16, 5.3.17 - 5.3.18, 5.4.45, 5.6.7, 5.6.16
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI 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.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.4, 5.4.5, 5.4.13, 5.4.17, 5.4.44, 5.6.8, 5.6.14
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI 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.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.7, 5.5.31, 5.6.12
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.35, 5.6.11
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.3, 5.3.25, 5.6.10
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.20, 5.4.8, 5.4.20, 5.4.24, 5.5.24, 5.6.9
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.5.34
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.21, 5.3.28, 5.4.7, 5.4.9, 5.5.33
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.12, 5.5.30
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.13, 5.5.28
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.8, 5.4.42, 5.5.27
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.14, 5.5.25
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.41
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.3, 5.4.40
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.30, 5.4.37, 5.4.39
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.19, 5.3.24, 5.4.34 - 5.4.36
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI 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.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.29
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000000
Output for 5.4.28
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000000
Output for 5.4.10, 5.4.27
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000000
Output for 5.4.12, 5.4.26
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.2, 5.2.15, 5.3.7, 5.4.23
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.22
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000012
Output for 5.4.21
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.19
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.16
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.15
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI 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/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.4.6
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.4
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.17, 5.3.23, 5.4.1
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.14, 5.4.0
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.27
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.26
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.22
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.2, 5.3.9 - 5.3.10, 5.3.16
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.15
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.1.0, 5.3.5, 5.3.12
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI 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/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.6
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI 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.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI 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.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.13
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.11
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.10
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.9
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.8
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.6
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 5.2.5
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.4
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000001
Output for 5.2.1
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.0
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI 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/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.1.5
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI 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/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.1.3
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.1.2
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI 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/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 5.0.5
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.0.4
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.0.3
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.0.2
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI 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.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 5.0.0
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/JdlMI 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.000016 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 4.4.8
<br>dummy#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000002
Output for 4.4.7
<br>dummy#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.4.6
<br>dummy#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.4.5
<br>dummy#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI 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.000011 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000005
Output for 4.4.3
<br>dummy#0 RESULT 0, DONE IN 0.000026 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.4.2
<br>dummy#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.4.1
<br>dummy#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.4.0
<br>dummy#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.11
<br>dummy#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI 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.000010 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.3.0, 4.3.4, 4.3.9
<br>dummy#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.8
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.3.7
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000005
Output for 4.3.6
<br>dummy#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.3.5
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.3
<br>dummy#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000003
Output for 4.3.2
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000004
Output for 4.3.1
<br>dummy#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 8 <br>eval++#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/JdlMI on line 16 <br>no++#1 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/JdlMI on line 23 <br>++no#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/JdlMI on line 31 <br>++eval#1 RESULT 0, DONE IN 0.000006

preferences:
171.83 ms | 402 KiB | 192 Q