Hi Leute,
Stellt euch mal vor ihr zockt auf ner LAN 15:00 -> 21:00 und jetzt wollt ihr wissen wie lange ihr gezockt habt !
Ich brauch ein Script was genau das berechnet nur tut meins das nicht ...
Ich habs jetzt mal probiert aber es klappt nicht ...
PHP
<?php
$timestamp = time();
$one = date("H:i",$timestamp);
$sec = "20:00";
function rechnema($z1, $z2)
{
$oneA = explode(":", $z1);
$secA = explode(":", $z2);
$t1 = mktime($oneA[0],$oneA[1],0,0,0,0);
$t2 = mktime($secA[0],$secA[1],0,0,0,0);
$now = $t2-$t1;
$uhrzeit = date("H:i",$now);
echo $uhrzeit;
}
rechnema($one, $sec);
?>
Alles anzeigen
Ich hoffe ihr könnt mir helfen
Gruß crAzywuLf