3v4l.org

run code in 300+ PHP versions simultaneously
<?php // example to show the magic date 1937-07-01 change in the NL // the Zend\Validate\DateStep does not account for this difference class Blar_DateTime extends DateTime { /** * Return Date in ISO8601 format * * @return String */ public function __toString() { return $this->format('Y-m-d H:i:s'); } /** * Return difference between $this and $now * * @param Datetime|String $now * @return DateInterval */ public function diff($now = 'NOW', $absolute = NULL) { if(!($now instanceOf DateTime)) { $now = new DateTime($now); } return parent::diff($now); } /** * Return Age in Years * * @param Datetime|String $now * @return Integer */ public function getAge($now = 'NOW') { return $this->diff($now)->format('%y'); } } $birthday = new Blar_DateTime('1879-03-14 00:00:00', new DateTimeZone("Europe/Amsterdam")); echo $birthday . "\n"; echo '<p>In the Netherlands Albert Einstein would now be ', $birthday->diff(new DateTime('NOW', new DateTimeZone("Europe/Amsterdam")))->format('%y Years, %m Months, %d Days, %h Hours, %i Minutes, %s Seconds'), ' old.</p>'; $birthday = new Blar_DateTime('1879-03-14 00:00:00', new DateTimeZone("Europe/London")); echo $birthday . "\n"; echo '<p>In the United Kingdom Albert Einstein would now be ', $birthday->diff(new DateTime('NOW', new DateTimeZone("Europe/London")))->format('%y Years, %m Months, %d Days, %h Hours, %i Minutes, %s Seconds'), ' old.</p>'; $birthday = new Blar_DateTime('1950-03-14 00:00:00', new DateTimeZone("Europe/Amsterdam")); echo $birthday . "\n"; echo '<p>the Netherlands mr. Anonymous would now be ', $birthday->diff(new DateTime('NOW', new DateTimeZone("Europe/Amsterdam")))->format('%y Years, %m Months, %d Days, %h Hours, %i Minutes, %s Seconds'), ' old.</p>'; $birthday = new Blar_DateTime('1950-03-14 00:00:00', new DateTimeZone("Europe/London")); echo $birthday . "\n"; echo '<p>In the mr. Anonymous would now be ', $birthday->diff(new DateTime('NOW', new DateTimeZone("Europe/London")))->format('%y Years, %m Months, %d Days, %h Hours, %i Minutes, %s Seconds'), ' old.</p>'; // output /* 1879-03-14 00:00:00 In the Netherlands Albert Einstein would now be 134 Years, 5 Months, 14 Days, 17 Hours, 54 Minutes, 49 Seconds old. 1879-03-14 00:00:00 In the United Kingdom Albert Einstein would now be 134 Years, 5 Months, 14 Days, 16 Hours, 55 Minutes, 17 Seconds old. 1950-03-14 00:00:00 the Netherlands mr. Anonymous would now be 63 Years, 5 Months, 14 Days, 17 Hours, 55 Minutes, 17 Seconds old. 1950-03-14 00:00:00 In the mr. Anonymous would now be 63 Years, 5 Months, 14 Days, 16 Hours, 55 Minutes, 17 Seconds old. now note the difference in seconds between example 1 and 2 of 28 seconds... exactly the time that does not exists in the netherlands on 1937-07-01 I conclude PHP does it correctly and Zend\Validate\DateStep should account for this. */
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Return type of Blar_DateTime::diff($now = 'NOW', $absolute = null) should either be compatible with DateTime::diff(DateTimeInterface $targetObject, bool $absolute = false): DateInterval, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/llIpg on line 24 1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 135 Years, 4 Months, 26 Days, 3 Hours, 52 Minutes, 55 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 135 Years, 4 Months, 26 Days, 2 Hours, 52 Minutes, 55 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 64 Years, 4 Months, 26 Days, 3 Hours, 52 Minutes, 55 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 64 Years, 4 Months, 26 Days, 2 Hours, 52 Minutes, 55 Seconds old.</p>
Output for 5.6.28, 7.0.14 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 135 Years, 4 Months, 26 Days, 3 Hours, 52 Minutes, 27 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 135 Years, 4 Months, 26 Days, 2 Hours, 52 Minutes, 55 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 64 Years, 4 Months, 26 Days, 3 Hours, 52 Minutes, 55 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 64 Years, 4 Months, 26 Days, 2 Hours, 52 Minutes, 55 Seconds old.</p>
Output for 7.0.6
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 19 Days, 18 Hours, 54 Minutes, 2 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 19 Days, 17 Hours, 54 Minutes, 30 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 19 Days, 18 Hours, 54 Minutes, 30 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 19 Days, 17 Hours, 54 Minutes, 30 Seconds old.</p>
Output for 7.0.5
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 20 Days, 7 Hours, 18 Minutes, 3 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 20 Days, 6 Hours, 18 Minutes, 31 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 20 Days, 7 Hours, 18 Minutes, 31 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 20 Days, 6 Hours, 18 Minutes, 31 Seconds old.</p>
Output for 7.0.4
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 11 Months, 25 Days, 18 Hours, 27 Minutes, 29 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 11 Months, 25 Days, 18 Hours, 7 Minutes, 57 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 11 Months, 25 Days, 19 Hours, 7 Minutes, 57 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 11 Months, 25 Days, 18 Hours, 7 Minutes, 57 Seconds old.</p>
Output for 7.0.3
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 4 Days, 19 Hours, 39 Minutes, 57 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 4 Days, 19 Hours, 20 Minutes, 25 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 4 Days, 20 Hours, 20 Minutes, 25 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 4 Days, 19 Hours, 20 Minutes, 25 Seconds old.</p>
Output for 7.0.2
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 9 Days, 1 Hours, 47 Minutes, 23 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 9 Days, 1 Hours, 27 Minutes, 51 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 9 Days, 2 Hours, 27 Minutes, 51 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 9 Days, 1 Hours, 27 Minutes, 51 Seconds old.</p>
Output for 7.0.1
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 10 Days, 5 Hours, 21 Minutes, 6 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 10 Days, 5 Hours, 1 Minutes, 34 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 10 Days, 6 Hours, 1 Minutes, 34 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 10 Days, 5 Hours, 1 Minutes, 34 Seconds old.</p>
Output for 7.0.0
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 13 Days, 7 Hours, 56 Minutes, 48 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 13 Days, 6 Hours, 57 Minutes, 16 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 13 Days, 7 Hours, 57 Minutes, 16 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 13 Days, 6 Hours, 57 Minutes, 16 Seconds old.</p>
Output for 5.6.21
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 18 Days, 14 Hours, 2 Minutes, 57 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 18 Days, 13 Hours, 3 Minutes, 25 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 18 Days, 14 Hours, 3 Minutes, 25 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 18 Days, 13 Hours, 3 Minutes, 25 Seconds old.</p>
Output for 5.6.20
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 27 Days, 6 Hours, 17 Minutes, 35 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 27 Days, 5 Hours, 18 Minutes, 3 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 27 Days, 6 Hours, 18 Minutes, 3 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 27 Days, 5 Hours, 18 Minutes, 3 Seconds old.</p>
Output for 5.6.19
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 11 Months, 23 Days, 2 Hours, 38 Minutes, 31 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 11 Months, 23 Days, 2 Hours, 18 Minutes, 59 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 11 Months, 23 Days, 3 Hours, 18 Minutes, 59 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 11 Months, 23 Days, 2 Hours, 18 Minutes, 59 Seconds old.</p>
Output for 5.6.18
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 1 Days, 11 Hours, 25 Minutes, 9 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 1 Days, 11 Hours, 5 Minutes, 37 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 1 Days, 12 Hours, 5 Minutes, 37 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 1 Days, 11 Hours, 5 Minutes, 37 Seconds old.</p>
Output for 5.6.17
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 5 Days, 23 Hours, 1 Minutes, 33 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 5 Days, 22 Hours, 42 Minutes, 1 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 5 Days, 23 Hours, 42 Minutes, 1 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 5 Days, 22 Hours, 42 Minutes, 1 Seconds old.</p>
Output for 5.6.16
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 14 Days, 8 Hours, 44 Minutes, 10 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 14 Days, 7 Hours, 44 Minutes, 38 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 14 Days, 8 Hours, 44 Minutes, 38 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 14 Days, 7 Hours, 44 Minutes, 38 Seconds old.</p>
Output for 5.6.15
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 15 Days, 9 Hours, 34 Minutes, 44 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 15 Days, 8 Hours, 35 Minutes, 12 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 15 Days, 9 Hours, 35 Minutes, 12 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 15 Days, 8 Hours, 35 Minutes, 12 Seconds old.</p>
Output for 5.6.14
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 19 Days, 11 Hours, 24 Minutes, 33 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 19 Days, 10 Hours, 24 Minutes, 46 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 19 Days, 11 Hours, 25 Minutes, 1 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 19 Days, 10 Hours, 25 Minutes, 1 Seconds old.</p>
Output for 5.6.13
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 1 Days, 15 Hours, 52 Minutes, 38 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 1 Days, 14 Hours, 52 Minutes, 51 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 1 Days, 15 Hours, 53 Minutes, 6 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 1 Days, 14 Hours, 53 Minutes, 6 Seconds old.</p>
Output for 5.6.12
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 6 Days, 6 Hours, 21 Minutes, 1 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 6 Days, 5 Hours, 21 Minutes, 14 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 6 Days, 6 Hours, 21 Minutes, 29 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 6 Days, 5 Hours, 21 Minutes, 29 Seconds old.</p>
Output for 5.6.11
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 10 Days, 12 Hours, 44 Minutes, 13 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 10 Days, 11 Hours, 44 Minutes, 26 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 10 Days, 12 Hours, 44 Minutes, 41 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 10 Days, 11 Hours, 44 Minutes, 41 Seconds old.</p>
Output for 5.6.10
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 11 Days, 14 Hours, 46 Minutes, 8 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 11 Days, 13 Hours, 46 Minutes, 21 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 11 Days, 14 Hours, 46 Minutes, 36 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 11 Days, 13 Hours, 46 Minutes, 36 Seconds old.</p>
Output for 5.6.9
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 13 Days, 19 Hours, 56 Minutes, 4 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 13 Days, 18 Hours, 56 Minutes, 17 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 13 Days, 19 Hours, 56 Minutes, 32 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 13 Days, 18 Hours, 56 Minutes, 32 Seconds old.</p>
Output for 5.6.8
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 16 Days, 4 Hours, 49 Minutes, 10 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 16 Days, 3 Hours, 49 Minutes, 38 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 16 Days, 4 Hours, 49 Minutes, 38 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 16 Days, 3 Hours, 49 Minutes, 38 Seconds old.</p>
Output for 5.5.35
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 2 Months, 8 Days, 22 Hours, 5 Minutes, 29 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 2 Months, 8 Days, 21 Hours, 5 Minutes, 42 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 2 Months, 8 Days, 22 Hours, 5 Minutes, 57 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 2 Months, 8 Days, 21 Hours, 5 Minutes, 57 Seconds old.</p>
Output for 5.5.34
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 28 Days, 8 Hours, 29 Minutes, 1 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 28 Days, 7 Hours, 29 Minutes, 14 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 28 Days, 8 Hours, 29 Minutes, 29 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 28 Days, 7 Hours, 29 Minutes, 29 Seconds old.</p>
Output for 5.5.33
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 11 Months, 24 Days, 5 Hours, 25 Minutes, 11 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 11 Months, 24 Days, 5 Hours, 4 Minutes, 24 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 11 Months, 24 Days, 6 Hours, 5 Minutes, 39 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 11 Months, 24 Days, 5 Hours, 5 Minutes, 39 Seconds old.</p>
Output for 5.5.32
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 3 Days, 15 Hours, 17 Minutes, 5 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 3 Days, 14 Hours, 56 Minutes, 18 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 3 Days, 15 Hours, 57 Minutes, 33 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 3 Days, 14 Hours, 57 Minutes, 33 Seconds old.</p>
Output for 5.5.31
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 7 Days, 2 Hours, 4 Minutes, 53 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 7 Days, 1 Hours, 44 Minutes, 6 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 7 Days, 2 Hours, 45 Minutes, 21 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 7 Days, 1 Hours, 45 Minutes, 21 Seconds old.</p>
Output for 5.5.30
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 0 Months, 18 Days, 11 Hours, 28 Minutes, 32 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 0 Months, 18 Days, 10 Hours, 28 Minutes, 45 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 0 Months, 18 Days, 11 Hours, 29 Minutes, 0 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 0 Months, 18 Days, 10 Hours, 29 Minutes, 0 Seconds old.</p>
Output for 5.5.29
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 3 Days, 6 Hours, 14 Minutes, 2 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 3 Days, 5 Hours, 14 Minutes, 15 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 3 Days, 6 Hours, 14 Minutes, 30 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 3 Days, 5 Hours, 14 Minutes, 30 Seconds old.</p>
Output for 5.5.28
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 7 Days, 9 Hours, 35 Minutes, 11 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 7 Days, 8 Hours, 35 Minutes, 24 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 7 Days, 9 Hours, 35 Minutes, 39 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 7 Days, 8 Hours, 35 Minutes, 39 Seconds old.</p>
Output for 5.5.27
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 8 Days, 11 Hours, 20 Minutes, 48 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 8 Days, 10 Hours, 21 Minutes, 1 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 8 Days, 11 Hours, 21 Minutes, 16 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 8 Days, 10 Hours, 21 Minutes, 16 Seconds old.</p>
Output for 5.5.26
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 12 Days, 17 Hours, 29 Minutes, 11 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 12 Days, 16 Hours, 29 Minutes, 24 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 12 Days, 17 Hours, 29 Minutes, 39 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 12 Days, 16 Hours, 29 Minutes, 39 Seconds old.</p>
Output for 5.5.25
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 1 Months, 15 Days, 0 Hours, 25 Minutes, 34 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 1 Months, 14 Days, 23 Hours, 25 Minutes, 47 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 1 Months, 15 Days, 0 Hours, 26 Minutes, 2 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 1 Months, 14 Days, 23 Hours, 26 Minutes, 2 Seconds old.</p>
Output for 5.5.24
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 137 Years, 2 Months, 10 Days, 6 Hours, 54 Minutes, 2 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 137 Years, 2 Months, 10 Days, 5 Hours, 54 Minutes, 30 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 66 Years, 2 Months, 10 Days, 6 Hours, 54 Minutes, 30 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 66 Years, 2 Months, 10 Days, 5 Hours, 54 Minutes, 30 Seconds old.</p>
Output for 5.4.45
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 11 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 39 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 39 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 39 Seconds old.</p>
Output for 5.4.44
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 12 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 40 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 40 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 40 Seconds old.</p>
Output for 5.4.43
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 13 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 41 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 41 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 41 Seconds old.</p>
Output for 5.4.41 - 5.4.42
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 14 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 42 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 42 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 42 Seconds old.</p>
Output for 5.4.40
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 15 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 43 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 43 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 43 Seconds old.</p>
Output for 5.4.37 - 5.4.39
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 16 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 44 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 44 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 44 Seconds old.</p>
Output for 5.4.34 - 5.4.36
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 17 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 45 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 45 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 45 Seconds old.</p>
Output for 5.4.31 - 5.4.32
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 18 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 46 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 46 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 46 Seconds old.</p>
Output for 5.4.27 - 5.4.30
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 19 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 47 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 47 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 47 Seconds old.</p>
Output for 5.4.24 - 5.4.26
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 44 Minutes, 20 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 48 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 48 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 48 Seconds old.</p>
Output for 5.4.23
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 20 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 48 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 48 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 48 Seconds old.</p>
Output for 5.3.28, 5.4.20 - 5.4.22
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 21 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 49 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 49 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 49 Seconds old.</p>
Output for 5.3.27, 5.4.17 - 5.4.19
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 22 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 50 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 50 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 50 Seconds old.</p>
Output for 5.3.24 - 5.3.26, 5.4.13 - 5.4.16
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 23 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 51 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 51 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 51 Seconds old.</p>
Output for 5.3.20 - 5.3.23, 5.4.10 - 5.4.12
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 24 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 52 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 52 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 52 Seconds old.</p>
Output for 5.3.16 - 5.3.19, 5.4.6 - 5.4.9
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 25 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 53 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 53 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 53 Seconds old.</p>
Output for 5.3.12 - 5.3.15, 5.4.2 - 5.4.5
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 26 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 54 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 54 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 54 Seconds old.</p>
Output for 5.3.6 - 5.3.11, 5.4.0 - 5.4.1
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 27 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 55 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 55 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 55 Seconds old.</p>
Output for 5.3.29
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 18 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 46 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 46 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 46 Seconds old.</p>
Output for 5.3.2 - 5.3.5
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 28 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 56 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 56 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 56 Seconds old.</p>
Output for 5.3.0 - 5.3.1
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be 136 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 29 Seconds old.</p>1879-03-14 00:00:00 <p>In the United Kingdom Albert Einstein would now be 136 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 57 Seconds old.</p>1950-03-14 00:00:00 <p>the Netherlands mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 3 Hours, 24 Minutes, 57 Seconds old.</p>1950-03-14 00:00:00 <p>In the mr. Anonymous would now be 65 Years, 8 Months, 4 Days, 2 Hours, 24 Minutes, 57 Seconds old.</p>
Output for 5.2.0 - 5.2.17
1879-03-14 00:00:00 <p>In the Netherlands Albert Einstein would now be Fatal error: Call to undefined method DateTime::diff() in /in/llIpg on line 28
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/llIpg on line 7
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/llIpg on line 14
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 T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/llIpg on line 14
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/llIpg on line 14
Process exited with code 255.

preferences:
288.43 ms | 401 KiB | 314 Q