Wochenplan
Dieses Script gibt die aktuelle Kalenderwoche aus
|
Script: |
<?php
function date2timestamp
($a =
'') {
if (empty($a))
return;
$a =
explode ('.',
$a);
return mktime
(0,0,0,
$a[1],
$a[0],
$a[2]);
}
$tst =
date2timestamp(date('d.m.Y'));
printf ('%s.
Kalenderwoche (%s - %s)',
date('W',
$tst),
date('d.m.Y',
strtotime ("last
Sunday", $tst)),
date('d.m.Y',
strtotime ("+6
day", $tst)));
?>
|
|