I tried using strtotime() to convert a string to a date, but apparently it can't handle milliseconds/microseconds or the meridian.
This returns false:
$date = strtotime('30-APR-13 01.31.50.584000000 PM');
How can I convert the above to a date?
I tried using strtotime() to convert a string to a date, but apparently it can't handle milliseconds/microseconds or the meridian.
This returns false:
$date = strtotime('30-APR-13 01.31.50.584000000 PM');
How can I convert the above to a date?