3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Query timestamp of entry //returns like this $entrydatetime = "2013-11-20 17:36:18"; //get current time $now = new \DateTime(); // Use DateTime on $entrydatetime $entrydatetime = new \DateTime($entrydatetime); // Seconds echo $now->getTimestamp() - $entrydatetime->getTimestamp() . "seconds\n"; // Human readable is more complex $age = $entrydatetime->diff($now); var_dump($age); // DateInterval if ($age->years > 0) { echo $age->format('%y years ago'); } else if ($age->months > 0) { echo $age->format('%m months ago'); } else if ($age->days > 0) { echo $age->format('%a days ago'); } else { echo $age->format('%h hours, %i minutes ago'); }
Output for 8.0.11
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003473) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.10
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003466) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.9
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003592) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.8
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.007871) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.7
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00388) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.6
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.004042) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.5
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003888) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.3
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.01023) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.2
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.009732) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.1
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003775) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 8.0.0
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008751) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Warning: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Warning: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.24
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003282) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.23
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003217) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.22
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.017312) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.21
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.007873) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.20
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003824) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.19
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003557) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.16
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.010486) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.15
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008325) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.14
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008293) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.13
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00853) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.12
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008748) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.11
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008301) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.10
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008826) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.9
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008976) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.8
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.009047) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.7
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008812) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.6
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000541) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.5
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.001773) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.4
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.004573) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.3
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.009796) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.4.1
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000204) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.12, 7.4.0
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000246) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.30
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.003434) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.29
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00973) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.28
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008035) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.27
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.010787) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.26
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008943) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.25
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.009134) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.24
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.01247) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.23
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008819) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.21
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008854) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.20
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.009097) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.19
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.011972) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.18
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.004472) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.17
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.011175) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.16
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008406) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.13
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000241) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.11
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000238) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.10
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000155) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.9
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000148) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.8
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000264) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.6, 7.3.7
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00018) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.6
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000215) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.5
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000338) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.4
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000282) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.6, 7.3.3
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000164) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.2
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000121) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.21, 7.3.1
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00021) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.3.0
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000114) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.33
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008886) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.32
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.010624) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.31
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.008889) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.30
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.012906) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.29
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.010083) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.26
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000262) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.25
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000263) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.24
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000249) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.5, 7.1.24, 7.2.23
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000157) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.22
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000236) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.21
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000176) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.20, 7.2.20
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.0002) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.19
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000172) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.18
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000303) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.17
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000229) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.16
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000248) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.15
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000122) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.1 - 7.2.2, 7.2.14
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000134) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.13
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000124) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.12
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00014) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.0, 7.2.11
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000158) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.10
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000136) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.9
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000123) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.8
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000185) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.7
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000188) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.5
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000182) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.4
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000156) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.3
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000186) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.2.0
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00019) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.28, 7.1.33
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000144) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.32
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000138) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.31
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000142) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.30
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000118) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.29
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000211) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.27
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000184) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.26
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000219) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.25
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000127) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.23
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000255) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.22
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000261) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.19
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000137) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.18
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000166) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.17
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000135) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.16
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.00013) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.15
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000119) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.14
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000193) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.13
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000125) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.7, 7.1.12
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000153) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.11
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000207) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.10
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000117) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.9
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000143) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.8
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000149) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.4
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000202) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.3
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.2
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000194) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.1.1
129588seconds object(DateInterval)#3 (16) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["f"]=> float(0.000169) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 5.3.27 - 5.3.29, 5.4.17 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.2, 7.0.4 - 7.0.33
129588seconds object(DateInterval)#3 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 7.0.3
129587seconds object(DateInterval)#3 (15) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(47) ["weekday"]=> int(0) ["weekday_behavior"]=> int(0) ["first_last_day_of"]=> int(0) ["invert"]=> int(0) ["days"]=> int(1) ["special_type"]=> int(0) ["special_amount"]=> int(0) ["have_weekday_relative"]=> int(0) ["have_special_relative"]=> int(0) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 5.3.6 - 5.3.26, 5.4.0 - 5.4.16
129588seconds object(DateInterval)#3 (8) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["invert"]=> int(0) ["days"]=> int(1) } Notice: Undefined property: DateInterval::$years in /in/QSgFs on line 24 Notice: Undefined property: DateInterval::$months in /in/QSgFs on line 26 1 days ago
Output for 5.3.0 - 5.3.5
129588seconds object(DateInterval)#3 (8) { ["y"]=> int(0) ["m"]=> int(0) ["d"]=> int(1) ["h"]=> int(11) ["i"]=> int(59) ["s"]=> int(48) ["invert"]=> int(0) ["days"]=> int(1) } Fatal error: main(): Unknown property (years) in /in/QSgFs on line 24
Process exited with code 255.
Output for 5.2.0 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 13 Fatal error: Call to undefined method DateTime::getTimestamp() in /in/QSgFs on line 17
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 13 Fatal error: Class 'DateTime' not found in /in/QSgFs on line 10
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 13 Fatal error: Cannot instantiate non-existent class: datetime in /in/QSgFs on line 10
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/QSgFs on line 13 Fatal error: Cannot instantiate non-existent class: datetime in /in/QSgFs on line 10

preferences:
236.65 ms | 401 KiB | 375 Q