3v4l.org

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

preferences:
178.75 ms | 402 KiB | 264 Q