Re: Date

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

 



Ron Piggott skrev:
How do I break $start_date into 3 variables --- 4 digit year, 2 digit
month and 2 digit day?

$start_year = ;
$start_month = ;
$start_day = ;



Of course depending on what $start_date looks like, but this should work
 most of the time:


$timestamp = strtotime( $start_date );

$start_year = date( "Y", $timestamp );
$start_month = date( "m", $timestamp );
$start_day = date( "d", $timestamp );

/T

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux