3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dt = new StdClass; $dt->now = new DateTime(); $occurredOn = new DateTime('2014-09-23'); // new DateTime(); $dt->lastUpdated = $occurredOn; $dt->interval = $dt->now->diff($dt->lastUpdated); $dt->remainingHours = $occurredOn; $dt->remainingHours->add(new DateInterval("PT4H")); $dt->remainingHours = $dt->remainingHours->diff($dt->now); $dt->remainingHours = timeRemainingInFourHours($dt->remainingHours); $dt->title = formatDateInterval($dt->interval); function timeRemainingInFourHours(DateInterval $interval) { $hours = ""; $minutes = ""; if ($interval->h) { $hours = $interval->format("%h") . " hours"; } if ($interval->i) { $minutes = $interval->format("%i") . " minutes"; } return $hours . $minutes . ' remaining'; } function formatDateInterval(DateInterval $interval) { $result = ""; // ternary? if ($interval->y) { $result .= $interval->format("%y years "); } if ($interval->m) { $result .= $interval->format("%m months "); } if ($interval->d) { $result .= $interval->format("%d days "); } if ($interval->h) { $result .= $interval->format("%h hours "); } if ($interval->i) { $result .= $interval->format("%i minutes "); } if ($interval->s) { $result .= $interval->format("%s seconds "); } else { $result .= "hot off the press"; } return $result; } var_dump($dt);
Output for 8.0.11
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003494" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003494) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003786" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003786) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.9
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003440" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.00344) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.8
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009497" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009497) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003532" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003532) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003597" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003597) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003758" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003758) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.3
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009590" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.00959) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.2
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009278" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009278) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.1
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003412" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003412) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 8.0.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008980" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.00898) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.24
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003651" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003651) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.23
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003211" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003211) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.22
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009087" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009087) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.21
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.006905" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.006905) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.20
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003471" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003471) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.010267" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.010267) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.15
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.013196" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.013196) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.14
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009182" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009182) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.13
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.010997" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.010997) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.12
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.010659" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.010659) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.11
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008353" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008353) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008706" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008706) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.9
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009301" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009301) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.8
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.010487" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.010487) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008408" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008408) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.001946" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.001946) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.001836" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.001836) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.4
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008326" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008326) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.3
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008553" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008553) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.4.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.000190" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.00019) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.30
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003145" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003145) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.29
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.007798" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.007798) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.28
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.012975" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.012975) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.27
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.015145" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.015145) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.26
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.012271" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.012271) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.25
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.011273" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.011273) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.24
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008492" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008492) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.23
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.007690" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.00769) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.21
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009549" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009549) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.20
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009594" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009594) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.19
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008853" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008853) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.18
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.005176" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.005176) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.17
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009489" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.009489) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.3.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008351" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008351) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.2.33
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.009240" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.00924) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.2.32
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.011431" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.011431) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.2.31
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008144" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008144) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.2.30
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.008722" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.008722) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.2.29
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.029731" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.029731) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.2.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.004408" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.004408) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.2.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.005404" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.005404) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.1.20
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003454" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003454) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.1.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.004685" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.004685) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.1.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.003557" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.003557) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.1.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.012599" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.012599) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.1.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.021218" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.021218) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.1.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.004199" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["f"]=> float(0.004199) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 5.6.28, 7.0.14 - 7.0.20
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:29.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(29) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 29 seconds " }
Output for 7.0.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-05-03 05:28:01.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(10) ["h"]=> int(5) ["i"]=> int(28) ["s"]=> int(1) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(588) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(27) "1 hours28 minutes remaining" ["title"]=> string(54) "1 years 7 months 10 days 5 hours 28 minutes 1 seconds " }
Output for 7.0.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-02 18:34:42.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(9) ["h"]=> int(18) ["i"]=> int(34) ["s"]=> int(42) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(557) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "14 hours34 minutes remaining" ["title"]=> string(55) "1 years 6 months 9 days 18 hours 34 minutes 42 seconds " }
Output for 7.0.4
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-10 04:28:52.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(17) ["h"]=> int(4) ["i"]=> int(28) ["s"]=> int(52) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(534) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(20) "28 minutes remaining" ["title"]=> string(55) "1 years 5 months 17 days 4 hours 28 minutes 52 seconds " }
Output for 7.0.3
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-18 04:49:22.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(25) ["h"]=> int(4) ["i"]=> int(49) ["s"]=> int(22) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(542) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(20) "49 minutes remaining" ["title"]=> string(55) "1 years 5 months 25 days 4 hours 49 minutes 22 seconds " }
Output for 7.0.2
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-21 15:17:39.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(28) ["h"]=> int(15) ["i"]=> int(17) ["s"]=> int(39) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(545) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "11 hours17 minutes remaining" ["title"]=> string(56) "1 years 5 months 28 days 15 hours 17 minutes 39 seconds " }
Output for 7.0.1
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-23 15:53:46.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(0) ["h"]=> int(15) ["i"]=> int(53) ["s"]=> int(46) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(547) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "11 hours53 minutes remaining" ["title"]=> string(48) "1 years 6 months 15 hours 53 minutes 46 seconds " }
Output for 7.0.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-26 17:42:05.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(3) ["h"]=> int(17) ["i"]=> int(42) ["s"]=> int(5) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(550) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "13 hours42 minutes remaining" ["title"]=> string(54) "1 years 6 months 3 days 17 hours 42 minutes 5 seconds " }
Output for 5.6.21
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-05-02 00:32:09.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(9) ["h"]=> int(0) ["i"]=> int(32) ["s"]=> int(9) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(587) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "20 hours32 minutes remaining" ["title"]=> string(45) "1 years 7 months 9 days 32 minutes 9 seconds " }
Output for 5.6.20
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-09 13:49:30.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(16) ["h"]=> int(13) ["i"]=> int(49) ["s"]=> int(30) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(564) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(27) "9 hours49 minutes remaining" ["title"]=> string(56) "1 years 6 months 16 days 13 hours 49 minutes 30 seconds " }
Output for 5.6.19
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-07 04:11:49.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(14) ["h"]=> int(4) ["i"]=> int(11) ["s"]=> int(49) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(531) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(20) "11 minutes remaining" ["title"]=> string(55) "1 years 5 months 14 days 4 hours 11 minutes 49 seconds " }
Output for 5.6.18
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-14 17:29:58.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(21) ["h"]=> int(17) ["i"]=> int(29) ["s"]=> int(58) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(538) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "13 hours29 minutes remaining" ["title"]=> string(56) "1 years 5 months 21 days 17 hours 29 minutes 58 seconds " }
Output for 5.6.17
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-19 09:13:48.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(26) ["h"]=> int(9) ["i"]=> int(13) ["s"]=> int(48) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(543) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(27) "5 hours13 minutes remaining" ["title"]=> string(55) "1 years 5 months 26 days 9 hours 13 minutes 48 seconds " }
Output for 5.6.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-27 19:28:15.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(4) ["h"]=> int(19) ["i"]=> int(28) ["s"]=> int(15) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(551) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "15 hours28 minutes remaining" ["title"]=> string(55) "1 years 6 months 4 days 19 hours 28 minutes 15 seconds " }
Output for 5.6.15
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-28 20:21:10.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(5) ["h"]=> int(20) ["i"]=> int(21) ["s"]=> int(10) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(552) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "16 hours21 minutes remaining" ["title"]=> string(55) "1 years 6 months 5 days 20 hours 21 minutes 10 seconds " }
Output for 5.6.14
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-01 22:52:15.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(8) ["h"]=> int(22) ["i"]=> int(52) ["s"]=> int(15) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(556) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "18 hours52 minutes remaining" ["title"]=> string(55) "1 years 6 months 8 days 22 hours 52 minutes 15 seconds " }
Output for 5.6.13
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-15 02:52:47.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(22) ["h"]=> int(2) ["i"]=> int(52) ["s"]=> int(47) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(570) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "22 hours52 minutes remaining" ["title"]=> string(55) "1 years 6 months 22 days 2 hours 52 minutes 47 seconds " }
Output for 5.6.12
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-19 16:20:37.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(26) ["h"]=> int(16) ["i"]=> int(20) ["s"]=> int(37) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(574) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "12 hours20 minutes remaining" ["title"]=> string(56) "1 years 6 months 26 days 16 hours 20 minutes 37 seconds " }
Output for 5.6.11
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-22 23:17:18.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(29) ["h"]=> int(23) ["i"]=> int(17) ["s"]=> int(18) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(577) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours17 minutes remaining" ["title"]=> string(56) "1 years 6 months 29 days 23 hours 17 minutes 18 seconds " }
Output for 5.6.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-25 01:09:01.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(2) ["h"]=> int(1) ["i"]=> int(9) ["s"]=> int(1) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(580) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(27) "21 hours9 minutes remaining" ["title"]=> string(52) "1 years 7 months 2 days 1 hours 9 minutes 1 seconds " }
Output for 5.6.9
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-27 06:09:35.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(4) ["h"]=> int(6) ["i"]=> int(9) ["s"]=> int(35) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(582) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(26) "2 hours9 minutes remaining" ["title"]=> string(53) "1 years 7 months 4 days 6 hours 9 minutes 35 seconds " }
Output for 5.6.8
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-29 14:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(6) ["h"]=> int(14) ["i"]=> int(0) ["s"]=> int(0) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(584) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(18) "10 hours remaining" ["title"]=> string(50) "1 years 7 months 6 days 14 hours hot off the press" }
Output for 5.6.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-05-25 03:16:22.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(8) ["d"]=> int(2) ["h"]=> int(3) ["i"]=> int(16) ["s"]=> int(22) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(610) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "23 hours16 minutes remaining" ["title"]=> string(54) "1 years 8 months 2 days 3 hours 16 minutes 22 seconds " }
Output for 5.5.35
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-05-22 04:19:57.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(29) ["h"]=> int(4) ["i"]=> int(19) ["s"]=> int(57) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(607) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(20) "19 minutes remaining" ["title"]=> string(55) "1 years 7 months 29 days 4 hours 19 minutes 57 seconds " }
Output for 5.5.34
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-10 19:47:36.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(17) ["h"]=> int(19) ["i"]=> int(47) ["s"]=> int(36) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(565) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "15 hours47 minutes remaining" ["title"]=> string(56) "1 years 6 months 17 days 19 hours 47 minutes 36 seconds " }
Output for 5.5.33
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-08 15:25:04.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(15) ["h"]=> int(15) ["i"]=> int(25) ["s"]=> int(4) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(532) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "11 hours25 minutes remaining" ["title"]=> string(55) "1 years 5 months 15 days 15 hours 25 minutes 4 seconds " }
Output for 5.5.32
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-16 21:15:07.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(23) ["h"]=> int(21) ["i"]=> int(15) ["s"]=> int(7) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(540) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "17 hours15 minutes remaining" ["title"]=> string(55) "1 years 5 months 23 days 21 hours 15 minutes 7 seconds " }
Output for 5.5.31
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-20 12:04:39.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(5) ["d"]=> int(27) ["h"]=> int(12) ["i"]=> int(4) ["s"]=> int(39) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(544) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(26) "8 hours4 minutes remaining" ["title"]=> string(55) "1 years 5 months 27 days 12 hours 4 minutes 39 seconds " }
Output for 5.5.30
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-03-31 22:22:35.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(8) ["h"]=> int(22) ["i"]=> int(22) ["s"]=> int(35) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(555) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "18 hours22 minutes remaining" ["title"]=> string(55) "1 years 6 months 8 days 22 hours 22 minutes 35 seconds " }
Output for 5.5.29
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-16 16:57:46.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(23) ["h"]=> int(16) ["i"]=> int(57) ["s"]=> int(46) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(571) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "12 hours57 minutes remaining" ["title"]=> string(56) "1 years 6 months 23 days 16 hours 57 minutes 46 seconds " }
Output for 5.5.28
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-20 19:23:15.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(27) ["h"]=> int(19) ["i"]=> int(23) ["s"]=> int(15) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(575) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "15 hours23 minutes remaining" ["title"]=> string(56) "1 years 6 months 27 days 19 hours 23 minutes 15 seconds " }
Output for 5.5.27
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-21 21:42:45.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(6) ["d"]=> int(28) ["h"]=> int(21) ["i"]=> int(42) ["s"]=> int(45) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(576) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "17 hours42 minutes remaining" ["title"]=> string(56) "1 years 6 months 28 days 21 hours 42 minutes 45 seconds " }
Output for 5.5.26
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-26 03:32:33.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(3) ["h"]=> int(3) ["i"]=> int(32) ["s"]=> int(33) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(581) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "23 hours32 minutes remaining" ["title"]=> string(54) "1 years 7 months 3 days 3 hours 32 minutes 33 seconds " }
Output for 5.5.25
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-04-28 09:29:14.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(7) ["d"]=> int(5) ["h"]=> int(9) ["i"]=> int(29) ["s"]=> int(14) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(583) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(27) "5 hours29 minutes remaining" ["title"]=> string(54) "1 years 7 months 5 days 9 hours 29 minutes 14 seconds " }
Output for 5.5.24
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2016-05-23 16:22:39.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(1) ["m"]=> int(8) ["d"]=> int(0) ["h"]=> int(16) ["i"]=> int(22) ["s"]=> int(39) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(608) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "12 hours22 minutes remaining" ["title"]=> string(48) "1 years 8 months 16 hours 22 minutes 39 seconds " }
Output for 5.4.45
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-09-21 14:18:46.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(11) ["d"]=> int(28) ["h"]=> int(14) ["i"]=> int(18) ["s"]=> int(46) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(363) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "10 hours18 minutes remaining" ["title"]=> string(49) "11 months 28 days 14 hours 18 minutes 46 seconds " }
Output for 5.4.44
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-09-21 14:18:38.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(11) ["d"]=> int(28) ["h"]=> int(14) ["i"]=> int(18) ["s"]=> int(38) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(363) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "10 hours18 minutes remaining" ["title"]=> string(49) "11 months 28 days 14 hours 18 minutes 38 seconds " }
Output for 5.4.43
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-09-21 14:18:30.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(11) ["d"]=> int(28) ["h"]=> int(14) ["i"]=> int(18) ["s"]=> int(30) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(363) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "10 hours18 minutes remaining" ["title"]=> string(49) "11 months 28 days 14 hours 18 minutes 30 seconds " }
Output for 5.4.42
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-09-21 14:18:27.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(11) ["d"]=> int(28) ["h"]=> int(14) ["i"]=> int(18) ["s"]=> int(27) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(363) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "10 hours18 minutes remaining" ["title"]=> string(49) "11 months 28 days 14 hours 18 minutes 27 seconds " }
Output for 5.4.41
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-09-21 14:18:23.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(11) ["d"]=> int(28) ["h"]=> int(14) ["i"]=> int(18) ["s"]=> int(23) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(363) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "10 hours18 minutes remaining" ["title"]=> string(49) "11 months 28 days 14 hours 18 minutes 23 seconds " }
Output for 5.4.40
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-09-21 14:18:19.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(11) ["d"]=> int(28) ["h"]=> int(14) ["i"]=> int(18) ["s"]=> int(19) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(363) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "10 hours18 minutes remaining" ["title"]=> string(49) "11 months 28 days 14 hours 18 minutes 19 seconds " }
Output for 5.4.39
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-09-21 14:18:15.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(11) ["d"]=> int(28) ["h"]=> int(14) ["i"]=> int(18) ["s"]=> int(15) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(363) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "10 hours18 minutes remaining" ["title"]=> string(49) "11 months 28 days 14 hours 18 minutes 15 seconds " }
Output for 5.4.38
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-03-15 05:03:04.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(5) ["d"]=> int(22) ["h"]=> int(5) ["i"]=> int(3) ["s"]=> int(4) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(173) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(26) "1 hours3 minutes remaining" ["title"]=> string(45) "5 months 22 days 5 hours 3 minutes 4 seconds " }
Output for 5.4.37
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-03-15 05:02:57.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(5) ["d"]=> int(22) ["h"]=> int(5) ["i"]=> int(2) ["s"]=> int(57) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(173) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(26) "1 hours2 minutes remaining" ["title"]=> string(46) "5 months 22 days 5 hours 2 minutes 57 seconds " }
Output for 5.4.34 - 5.4.36
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2015-03-15 05:02:56.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(5) ["d"]=> int(22) ["h"]=> int(5) ["i"]=> int(2) ["s"]=> int(56) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(173) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(26) "1 hours2 minutes remaining" ["title"]=> string(46) "5 months 22 days 5 hours 2 minutes 56 seconds " }
Output for 5.4.30 - 5.4.32
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:26:34.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2014-09-23 04:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(34) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 34 seconds " }
Output for 5.4.20 - 5.4.29
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:26:34" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(19) "2014-09-23 04:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(34) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 34 seconds " }
Output for 5.4.17 - 5.4.19
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:26:35" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(19) "2014-09-23 04:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(35) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 35 seconds " }
Output for 5.4.0 - 5.4.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:26:35" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(19) "2014-09-23 04:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (8) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(35) ["invert"]=> int(1) ["days"]=> int(2) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 35 seconds " }
Output for 5.3.27 - 5.3.29
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:26:36" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(19) "2014-09-23 04:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(36) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(1) ["days"]=> int(2) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 36 seconds " }
Output for 5.3.11 - 5.3.26
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:26:36" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(19) "2014-09-23 04:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (8) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(36) ["invert"]=> int(1) ["days"]=> int(2) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 36 seconds " }
Output for 5.3.0 - 5.3.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:26:37" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#3 (3) { ["date"]=> string(19) "2014-09-23 04:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["interval"]=> object(DateInterval)#4 (8) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(26) ["s"]=> int(37) ["invert"]=> int(1) ["days"]=> int(2) } ["remainingHours"]=> string(28) "19 hours26 minutes remaining" ["title"]=> string(38) "2 days 23 hours 26 minutes 37 seconds " }
Output for 5.2.0 - 5.2.17
Fatal error: Call to undefined method DateTime::diff() in /in/4IQjQ on line 10
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'DateTime' not found in /in/4IQjQ on line 4
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting ')' in /in/4IQjQ on line 23
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting ')' in /in/4IQjQ on line 23
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `')'' in /in/4IQjQ on line 23
Process exited with code 255.

preferences:
184.98 ms | 401 KiB | 228 Q