Re: strtotime problem

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

 



Thodoris wrote:
I know that *strtotime*() only recognises the formats mm/dd/yyyy, yyyy-mm-dd and yyyymmdd
****for numeric months but I need do something like that:

function dateWebToMysql($webdate){

    $format = 'Y-m-d';
    $timestamp = strtotime($webdate);
return date($format,$timestamp); }

print dateWebToMysql('01/03/2008');

Where 01/03/2008 is in dd/mm/yyyy format (not the American format). What is the best way of doing this?

Any ideas?


completely random and never used myself [ie just made it up]

function dateWebToMysql( $webdate ){
 return strtotime(strrev( str_replace('/','', $webdate) ));
}

--
nathan ( nathan@xxxxxxxxxxx )
{
  Senior Web Developer
  php + java + flex + xmpp + xml + ecmascript
  web development edinburgh | http://kraya.co.uk/
}

--
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