[Solved] How to convert “Day, dd Month yyyy” to “yyyy-mm-dd” in php [duplicate]
if you’re facing the problem of converting a human readable date to numeric values you have to reconsider your design. Your code should work only with 32 or 64 bit epoch values (seconds since 1st January 1970) and then convert them into the appropriate format only when needed. In any case, just do this: $time … Read more