|
Posted by Lars Eighner on 10/11/07 22:29
In our last episode,
<1192140304.180826.282650@g4g2000hsf.googlegroups.com>,
the lovely and talented Chris
broadcast on comp.lang.php:
> I am trying to output Monday of the current week i.e. if Monday is the
> 8th I want to display 'Monday 8th' for any date between Monday 8-14th.
> I would appreciate any help, the code below is heading in the right
> direction but doesn't quite give me the results I am looking for.
> $givenday = mktime(0,0,0,10,08,2007);
> $Monday = strtotime("Monday this week",$givenday);
> echo date("j M Y H:i:s", $Monday);
> Cheers,
> Chris
This seems to work for me.
php -r "echo date('j M Y H:i:s',strtotime('last Monday', \
strtotime('Sunday')));"
You want the Monday previous to next Sunday.
--
Lars Eighner <http://larseighner.com/> <http://myspace.com/larseighner>
Countdown: 466 days to go.
What do you do when you're debranded?
[Back to original message]
|