John Taylor-Johnston wrote:

Is there a way to reverse engineer http://www.php.net/manual/en/function.date.php ?

I want to feed in 2003-02-28 and extract February 28, 2003. I can substr it out ...

$eventid = "2003-02-28";

$year = substr($eventid, 0,4);
$month = substr($eventid, 5,7);
$year = substr($eventid, 8,10);

But there must be a function that would do it? Everything else exists :)


yes there is: take a look at the strtotime() and strftime() functions in the manual.


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



Reply via email to