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.1.7
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF 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.000006 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF 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.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 7.1.0
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 7.0.20
<br>dummy#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000001
Output for 7.0.5, 7.0.12 - 7.0.14
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 7.0.9, 7.0.11
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.3, 7.0.8, 7.0.10
<br>dummy#0 RESULT 0, DONE IN 0.000001 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 7.0.7
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF 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.000001 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 7.0.4
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF 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/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 7.0.1
<br>dummy#0 RESULT 0, DONE IN 0.000000 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF 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/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.6.28
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.3.6 - 5.3.7, 5.6.3, 5.6.5, 5.6.26
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.4, 5.4.38, 5.4.40, 5.4.45, 5.5.13, 5.5.27, 5.6.8, 5.6.16, 5.6.25
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.24
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.6.23
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.6.22
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.6, 5.5.21, 5.5.24, 5.5.28 - 5.5.30, 5.5.38, 5.6.7, 5.6.21
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.0, 5.3.15, 5.6.20
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.0, 5.5.7, 5.5.33, 5.6.19
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.6.18
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF 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.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.20, 5.5.19, 5.6.4, 5.6.11, 5.6.15
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.0 - 5.2.1, 5.4.9, 5.4.37, 5.5.3, 5.5.9, 5.6.2, 5.6.14
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.6.13
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.5.1, 5.6.9, 5.6.12
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.6.10
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.6.6
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.6.1
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.6.0
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.3.29, 5.5.37
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.5.2, 5.5.36
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.17, 5.5.23, 5.5.35
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.12, 5.4.27, 5.4.36, 5.5.34
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.6, 5.5.11, 5.5.32
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.31
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.3.23, 5.4.15, 5.4.19, 5.5.26
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.30, 5.4.42, 5.5.25
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.11, 5.4.29, 5.4.41, 5.5.22
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.20
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.0, 5.4.31, 5.5.18
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.9, 5.2.15, 5.3.2, 5.3.5, 5.3.9, 5.3.14, 5.3.18, 5.3.25, 5.4.2, 5.4.7, 5.5.16
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.5.15
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.14
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.8, 5.4.14, 5.5.12
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.5.10
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.5.8
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.5.5
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.4.39, 5.5.4
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.44
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.43
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.35
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.2.8, 5.2.14, 5.4.34
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.27, 5.4.32
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.18, 5.4.28
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.26
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.25
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.24
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.23
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.22
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.4.21
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.11, 5.4.16
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.2, 5.2.12, 5.3.13, 5.3.24, 5.3.26, 5.4.13
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.5, 5.4.10
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.4.3
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.4.1
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF 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.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.2.6, 5.3.11, 5.3.16, 5.3.19, 5.3.22
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.3.21
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.3.20
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.17
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.3.12
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.3.10
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.3.8
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.3.4
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.3.3
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000001
Output for 5.3.1
<br>dummy#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF 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.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000006
Output for 5.2.16
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF 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.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.10
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.2.5, 5.2.7
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF 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.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.2.3
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.1.4, 5.1.6
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.1.5
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF 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.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000002 Notice: Undefined variable: count in /in/Yf8uF 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/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000004
Output for 5.1.1
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.1.0
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000002
Output for 5.0.5
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 5.0.4
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000006
Output for 5.0.3
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.0.2
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 5.0.1
<br>dummy#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000015 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000006
Output for 5.0.0
<br>dummy#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000003 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000003
Output for 4.4.9
<br>dummy#0 RESULT 0, DONE IN 0.000020 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF 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.000011 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 4.4.7
<br>dummy#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF 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.000016 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF 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.000014 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000008
Output for 4.4.4
<br>dummy#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF 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.000010 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 4.4.2
<br>dummy#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000013 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000014
Output for 4.4.1
<br>dummy#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 4.4.0
<br>dummy#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000004 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 4.3.11
<br>dummy#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF 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.000014 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 4.3.9
<br>dummy#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000005 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000009
Output for 4.3.8
<br>dummy#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF 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.000018 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000008 Notice: Undefined variable: count in /in/Yf8uF 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.000018 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 4.3.5
<br>dummy#0 RESULT 0, DONE IN 0.000017 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF 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.000018 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000014 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000011 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000009 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000013
Output for 4.3.3
<br>dummy#0 RESULT 0, DONE IN 0.000019 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000016 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000009
Output for 4.3.2
<br>dummy#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000010 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000009
Output for 4.3.1
<br>dummy#0 RESULT 0, DONE IN 0.000018 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000005
Output for 4.3.0
<br>dummy#0 RESULT 0, DONE IN 0.000021 Notice: Undefined variable: count in /in/Yf8uF on line 8 <br>eval#0 RESULT 0, DONE IN 0.000012 Notice: Undefined variable: count in /in/Yf8uF on line 16 <br>#1 RESULT 0, DONE IN 0.000007 Notice: Undefined variable: count in /in/Yf8uF on line 23 <br>#0 RESULT 0, DONE IN 0.000006 Notice: Undefined variable: count in /in/Yf8uF on line 31 <br>eval#1 RESULT 0, DONE IN 0.000006

preferences:
153.03 ms | 402 KiB | 218 Q