nederlandse-datum
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
//Voor Windows: setlocale(LC_TIME, 'nld_NLD');
setlocale(LC_TIME, 'nl_NL');
function nederlandseDatum($timestamp) {
if(strftime('%x', $timestamp) == strftime('%x')) {
$nederlandseDatum = 'Vandaag - ' . strftime('%H:%M', $timestamp);
}
elseif(strftime('%x', strtotime('+1 day', $timestamp)) == strftime('%x')) {
$nederlandseDatum = 'Gisteren - ' . strftime('%H:%M', $timestamp);
}
elseif(strftime('%x', strtotime('+2 day', $timestamp)) == strftime('%x')) {
$nederlandseDatum = 'Eergisteren - ' . strftime('%H:%M', $timestamp);
}
else {
$nederlandseDatum = date('j ', $timestamp) . strftime('%B %Y - %H:%M', $timestamp);
}
return $nederlandseDatum;
}
?>
//Voor Windows: setlocale(LC_TIME, 'nld_NLD');
setlocale(LC_TIME, 'nl_NL');
function nederlandseDatum($timestamp) {
if(strftime('%x', $timestamp) == strftime('%x')) {
$nederlandseDatum = 'Vandaag - ' . strftime('%H:%M', $timestamp);
}
elseif(strftime('%x', strtotime('+1 day', $timestamp)) == strftime('%x')) {
$nederlandseDatum = 'Gisteren - ' . strftime('%H:%M', $timestamp);
}
elseif(strftime('%x', strtotime('+2 day', $timestamp)) == strftime('%x')) {
$nederlandseDatum = 'Eergisteren - ' . strftime('%H:%M', $timestamp);
}
else {
$nederlandseDatum = date('j ', $timestamp) . strftime('%B %Y - %H:%M', $timestamp);
}
return $nederlandseDatum;
}
?>