uren-minuten-en-seconden
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
function tijd($tijd){
$time=time();
$tijd=$tijd - $time;
if($tijd>3600){
//meer dan een uur
$t=$tijd / 3600;
$uur=@explode(".",$t);
if(strlen($uur[0])==1){ //voorloop nul
$uur[0]="0$uur[0]";
}
$m1=$tijd-$uur[0]*3600;
$m=$m1 / 60;
$min=@explode(".",$m);
if(strlen($min[0])==1){
$min[0]="0$min[0]";
}
$s=$tijd-($uur[0]*3600)-($min[0]*60);
$tijd="$uur[0]:$min[0]:$s";
echo($tijd);
}elseif($tijd>60){
//meer dan minuut
$t=$tijd / 60;
$explode=@explode(".",$t);
if(strlen($explode[0])==1){
$explode[0]="0$min[0]";
}
$s=$tijd-($explode[0]*60);
$tijd="0:$explode[0]:$s";
echo($tijd);
}elseif($tijd>0){
//minder dan minuut
if(strlen($tijd[0])==1){
$tijd[0]="0$tijd[0]";
}
echo($tijd);
}
}
?>
function tijd($tijd){
$time=time();
$tijd=$tijd - $time;
if($tijd>3600){
//meer dan een uur
$t=$tijd / 3600;
$uur=@explode(".",$t);
if(strlen($uur[0])==1){ //voorloop nul
$uur[0]="0$uur[0]";
}
$m1=$tijd-$uur[0]*3600;
$m=$m1 / 60;
$min=@explode(".",$m);
if(strlen($min[0])==1){
$min[0]="0$min[0]";
}
$s=$tijd-($uur[0]*3600)-($min[0]*60);
$tijd="$uur[0]:$min[0]:$s";
echo($tijd);
}elseif($tijd>60){
//meer dan minuut
$t=$tijd / 60;
$explode=@explode(".",$t);
if(strlen($explode[0])==1){
$explode[0]="0$min[0]";
}
$s=$tijd-($explode[0]*60);
$tijd="0:$explode[0]:$s";
echo($tijd);
}elseif($tijd>0){
//minder dan minuut
if(strlen($tijd[0])==1){
$tijd[0]="0$tijd[0]";
}
echo($tijd);
}
}
?>