RE: finding out the date of the first day of the current week

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> I am trying to make a small function that will me the date in Y-m-d of
the
> start of the current week (the sunday) I have only the idea of doing
it by
> making a long drawn out script with if, elseif clauses for every day
of
> the
> week... and then doing something like
> 
> if ( date('D') = "mon" ) {
> 
> $sunday  = mktime (0,0,0,date("m")  ,date("d")-1,date("Y"));

Try this:

$Sunday = mktime(0,0,0,date('m'),date('d')-date('w'),date('Y'));

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux