<Original message>
From: Ker Ruben Ramos <[EMAIL PROTECTED]>
Date: Thu, Sep 20, 2001 at 09:36:55PM -0700
Message-ID: <012b01c14257$0afb3db0$bb05aacb@weblinqproxy>
Subject: Re: [PHP] simple question...

> One more thing... If I got '2001-09-01'
> Is there a fast way of incrementing the month of it?
> making it '2001-10-01' ?

</Original message>

<Reply>

You should date() do the work here. So just take the month and then
+1. Date() will take care the result is a valid date.
Below is some example...

--- PHP Example Code ---
<PRE>
<?php

$myDate = "2001-09-12";

if (ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})", $myDate, $matches)) {
  if (checkdate ($matches[2], $matches[3], $matches[1])) {
    print (date ("Y-m-d", mktime (0,0,0,$matches[2]+1, $matches[3], $matches[1])));
  } else {
    print ("No valid date!");
  }
} else {
  print ("No valid date!");
}

?>
</PRE>
--- End of PHP Example Code ---

</Reply>

-- 

* R&zE:


-- »»»»»»»»»»»»»»»»»»»»»»»»
-- Renze Munnik
-- DataLink BV
--
-- E: [EMAIL PROTECTED]
-- W: +31 23 5326162
-- F: +31 23 5322144
-- M: +31 6 21811143
--
-- Stationsplein 82
-- 2011 LM  HAARLEM
-- Netherlands
--
-- http://www.datalink.nl
-- ««««««««««««««««««««««««

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to