3v4l.org

run code in 300+ PHP versions simultaneously
<?php $date_ranges = array( '7 Days Ago' => array( 'from' => new DateTime('7 days ago 00:00:00', $tz), 'to' => new DateTime('yesterday 23:59:59', $tz) ), 'Yesterday' => array( 'from' => new DateTime('yesterday 00:00:00', $tz), 'to' => new DateTime('yesterday 23:59:59', $tz) ), '30 Days Ago' => array( 'from' => new DateTime('30 days ago 00:00:00', $tz), 'to' => new DateTime('yesterday 23:59:59', $tz) ) ); usort($myArray, function($a, $b) { return $a['from']->getTimestamp() - $b['from']->getTimestamp(); }); print_r($date_ranges);
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined variable $tz in /in/b0QUc on line 5 Warning: Undefined variable $tz in /in/b0QUc on line 6 Warning: Undefined variable $tz in /in/b0QUc on line 9 Warning: Undefined variable $tz in /in/b0QUc on line 10 Warning: Undefined variable $tz in /in/b0QUc on line 13 Warning: Undefined variable $tz in /in/b0QUc on line 14 Fatal error: Uncaught TypeError: usort(): Argument #1 ($array) must be of type array, null given in /in/b0QUc:17 Stack trace: #0 /in/b0QUc(17): usort(NULL, Object(Closure)) #1 {main} thrown in /in/b0QUc on line 17
Process exited with code 255.
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
Warning: Undefined variable $tz in /in/b0QUc on line 5 Warning: Undefined variable $tz in /in/b0QUc on line 6 Warning: Undefined variable $tz in /in/b0QUc on line 9 Warning: Undefined variable $tz in /in/b0QUc on line 10 Warning: Undefined variable $tz in /in/b0QUc on line 13 Warning: Undefined variable $tz in /in/b0QUc on line 14 Fatal error: Uncaught TypeError: usort(): Argument #1 ($array) must be of type array, null given in /in/b0QUc:19 Stack trace: #0 /in/b0QUc(19): usort(NULL, Object(Closure)) #1 {main} thrown in /in/b0QUc on line 19
Process exited with code 255.
Output for 5.4.30 - 5.4.45, 5.6.28, 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2015-10-13 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2015-10-19 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2015-09-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 7.3.32 - 7.3.33
Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2015-10-13 00:00:00.000000 [timezone_type] => 3 [timezone] => UTC ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59.000000 [timezone_type] => 3 [timezone] => UTC ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2015-10-19 00:00:00.000000 [timezone_type] => 3 [timezone] => UTC ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59.000000 [timezone_type] => 3 [timezone] => UTC ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2015-09-20 00:00:00.000000 [timezone_type] => 3 [timezone] => UTC ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59.000000 [timezone_type] => 3 [timezone] => UTC ) ) )
Output for 7.0.6
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-26 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-02 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-05-02 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-02 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-03 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-02 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 7.0.5
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-26 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-01 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-01 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-01 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-03 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-01 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 7.0.4
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-02 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-08 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-08 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-08 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-08 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-08 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 7.0.3
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-10 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-16 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-16 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-16 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-16 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-16 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 7.0.2
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-14 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 7.0.1
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-16 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-22 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-22 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-22 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-22 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-22 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 7.0.0
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-19 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-25 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-25 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-25 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-25 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-25 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.21
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-24 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-30 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-30 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-30 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-01 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-30 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.20
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-02 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-08 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-08 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-08 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-10 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-08 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.19
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-28 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-05 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-05 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-05 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-05 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-05 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.18
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-07 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-13 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-13 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-13 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-13 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-13 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.17
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-12 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-18 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-18 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-18 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-18 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-18 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.16
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-26 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-26 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-26 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-26 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-26 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.15
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-21 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-27 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-27 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-27 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-27 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-27 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.14
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-25 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-31 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-31 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-31 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-02 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-31 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.13
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-07 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-13 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-13 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-13 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-15 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-13 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.12
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-12 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-18 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-18 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-18 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-18 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.11
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-15 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-21 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-21 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-21 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-23 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-21 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.10
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-17 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-23 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-23 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-23 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-25 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-23 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.9
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-26 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-26 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-26 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-28 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-26 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.8
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-22 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-28 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-28 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-28 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-30 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-28 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.6.7
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-05-17 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-23 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-05-23 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-23 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-24 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-23 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.35
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-05-14 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-05-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-21 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-05-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.34
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-03 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-09 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-09 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-09 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-11 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-09 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.33
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-01 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-07 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-07 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-07 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-07 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-07 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.32
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-08 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-14 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-14 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-14 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-14 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-14 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.31
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-13 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-19 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-02-19 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.30
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-24 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-30 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-03-30 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-30 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-01 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-03-30 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.29
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-09 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-15 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-15 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-15 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-17 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-15 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.28
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-13 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-19 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-21 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-19 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.27
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-14 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-20 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-22 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-20 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.26
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-18 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-24 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-24 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-24 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-26 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-24 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.25
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-21 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-27 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-27 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-27 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-29 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-27 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.5.24
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-04-23 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-29 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2016-04-29 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-29 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2016-03-31 00:00:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2016-04-29 23:59:59.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )
Output for 5.4.0 - 5.4.29
Notice: Undefined variable: tz in /in/b0QUc on line 5 Notice: Undefined variable: tz in /in/b0QUc on line 6 Notice: Undefined variable: tz in /in/b0QUc on line 9 Notice: Undefined variable: tz in /in/b0QUc on line 10 Notice: Undefined variable: tz in /in/b0QUc on line 13 Notice: Undefined variable: tz in /in/b0QUc on line 14 Warning: usort() expects parameter 1 to be array, null given in /in/b0QUc on line 19 Array ( [7 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2015-10-13 00:00:00 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [Yesterday] => Array ( [from] => DateTime Object ( [date] => 2015-10-19 00:00:00 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [30 Days Ago] => Array ( [from] => DateTime Object ( [date] => 2015-09-20 00:00:00 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) [to] => DateTime Object ( [date] => 2015-10-19 23:59:59 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) )

preferences:
248.36 ms | 405 KiB | 275 Q