I meet a trouble with php data function.
echo strtotime("31/05/2011");
It prints empty.
What's problem with this?
Thanks.
DD/MM/YYYY Is not a valid date format (The manual outlines it must follow one of the supported date and time formats.) So, instead, it should be MM/DD/YYYY:
echo strtotime("05/31/2011");
Or, I guess as others have posted, the european (ISO8601 Notations) version uses hyphens:
echo strtotime("31-05-2011");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With