3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dt = new StdClass; $dt->now = new DateTime(); $occurredOn = new DateTime(); $dt->lastUpdated = $occurredOn; $dt->lastUpdated = new DateTime('2014-09-23'); $dt->remainingHours = $occurredOn; $dt->interval = $dt->now->diff($dt->lastUpdated); $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:25:13.003770" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.00377) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003517" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003517) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.9
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003783" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003783) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.8
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008574" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008574) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003568" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003568) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003841" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003841) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003336" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003336) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.3
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009597" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009597) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.2
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009667" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009667) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.1
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003504" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003504) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 8.0.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008708" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008708) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.24
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003634" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003634) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.23
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003835" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003835) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.22
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008684" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008684) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.21
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.020217" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.020217) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.20
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003490" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.00349) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.012079" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.012079) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.15
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.011528" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.011528) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.14
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008369" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008369) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.13
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009624" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009624) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.12
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008970" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.00897) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.11
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009164" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009164) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.010709" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.010709) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.9
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008953" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008953) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.8
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009443" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009443) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008365" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008365) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000360" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.00036) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.002065" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.002065) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.4
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.010629" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.010629) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.3
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.007875" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.007875) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.4.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000281" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000281) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.30
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.003147" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.003147) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.29
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.013460" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.01346) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.28
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008063" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008063) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.27
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.014219" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.014219) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.26
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.011931" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.011931) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.25
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009632" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009632) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.24
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009747" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009747) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.23
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008236" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008236) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.21
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009109" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009109) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.20
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008911" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008911) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.19
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.009008" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.009008) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.18
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.004607" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.004607) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.17
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008461" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008461) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.3.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.007931" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.007931) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.21, 7.3.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000192" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000192) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.33
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008675" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008675) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.32
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.013026" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.013026) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.31
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008711" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008711) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.30
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.008582" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.008582) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.29
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.013110" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.01311) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.13
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000225" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000225) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.12
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000322" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000322) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.20, 7.2.11
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000198" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000198) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.4, 7.2.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000189" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000189) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.13, 7.2.9
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000249" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000249) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.8
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000204" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000204) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000207" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000207) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.14, 7.2.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000141" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000141) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000147" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000147) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.3
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000310" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.00031) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.2
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000199" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000199) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.1
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000169" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000169) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.2.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000156" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000156) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.25
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000194" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000194) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.24
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000195" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000195) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.23
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000144" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000144) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.22
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000187" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000187) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.19
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000229" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000229) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.18
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000227" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000227) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.17
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000157" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000157) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000188" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000188) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.15
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000260" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.00026) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.12
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000150" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.00015) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.11
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000211" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000211) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.10
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000152" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000152) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.9
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000171" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000171) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.8
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000275" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000275) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.7
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000233" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000233) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.6
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000213" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000213) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.5
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000186" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000186) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.4
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000174" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000174) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.3
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.2
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000185" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000185) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.1
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000254" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000254) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 7.1.0
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000283" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["f"]=> float(0.000283) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 5.4.30 - 5.4.45, 5.5.14 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.33
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(26) "2014-09-25 23:25:13.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(26) "2014-09-23 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 5.3.27 - 5.3.29, 5.4.17 - 5.4.29, 5.5.0 - 5.5.13
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:25:13" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(19) "2014-09-23 00:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["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) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 5.3.0 - 5.3.26, 5.4.0 - 5.4.16
object(stdClass)#1 (5) { ["now"]=> object(DateTime)#2 (3) { ["date"]=> string(19) "2014-09-25 23:25:13" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["lastUpdated"]=> object(DateTime)#4 (3) { ["date"]=> string(19) "2014-09-23 00:00:00" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } ["remainingHours"]=> string(17) "4 hours remaining" ["interval"]=> object(DateInterval)#5 (8) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(2) ["h"]=> int(23) ["i"]=> int(25) ["s"]=> int(13) ["invert"]=> int(1) ["days"]=> int(2) } ["title"]=> string(38) "2 days 23 hours 25 minutes 13 seconds " }
Output for 5.2.0 - 5.2.17
Fatal error: Call to undefined method DateTime::diff() in /in/sY6sf on line 13
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/sY6sf 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/sY6sf on line 21
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/sY6sf on line 21
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `')'' in /in/sY6sf on line 21
Process exited with code 255.

preferences:
246 ms | 401 KiB | 337 Q