php-general | 2004032
Date: 03/31/04
- Next message: Hawkes, Richard: "RE: [PHP] adding days to a given date"
- Previous message: Hawkes, Richard: "RE: [PHP] adding days to a given date"
- In reply to: Hawkes, Richard: "RE: [PHP] adding days to a given date"
- Next in thread: Merlin: "Re: [PHP] adding days to a given date"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wednesday 31 March 2004 17:08, Hawkes, Richard wrote:
> You'll want to do something like this:
>
> $timeStamp = strtotime("2004-04-29");
> $timeStamp += 24 * 60 * 60 * 7; // (add 7 days)
> $newDate = date("Y-m-d", $timeStamp);
>
> The 'strtotime' function converts all sorts of standard dates to the Unix
> Epoch seconds (seconds since 1/1/1970). You then just add the required
> seconds!
strtotime() can do more than that, time to RTFM.
-- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * ------------------------------------------ Search the list archives before you post http://marc.theaimsgroup.com/?l=php-general ------------------------------------------ /* QOTD: "My life is a soap opera, but who gets the movie rights?" */-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Hawkes, Richard: "RE: [PHP] adding days to a given date"
- Previous message: Hawkes, Richard: "RE: [PHP] adding days to a given date"
- In reply to: Hawkes, Richard: "RE: [PHP] adding days to a given date"
- Next in thread: Merlin: "Re: [PHP] adding days to a given date"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

