blob: 20093ea26aa27091479880af34a6f79d024a7e66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
$time=1414929600;
$now=time();
$secs = $now - $time;
$years = (int) ($secs / 31536000); // == 1 jahr
$secs = $secs - ($years * 31536000);
$now = date_create('now', new DateTimeZone('GMT'));
$here = clone $now;
$here->modify($secs.' seconds');
$diff = $now->diff($here);
$body = $diff->format('Wir sind '.$years.' Jahr, %a Tage, %h Stunde, %i Minuten und %s Sekunden zusammen.');
mail("fnetzband@iamfabulous.de", "Timestamp duration relationship", $body, "From: Liebling <max-moehring@web.de>\r\n");
|