Date format is not valid: dd/mm/yyyy hh:mm:ss
. You probably mean d/m/YH:i:s
If you have version 5.3+, there is a safe way to convert the date to another format. Here is an example:
$timestamp = '31/05/2001 12:22:56'; $timestamp = DateTime::createFromFormat('d/m/YH:i:s', $timestamp); echo $timestamp->format('Ymd H:i:s');
or if you like a more procedural way:
$timestamp = '31/05/2001 12:22:56'; $timestamp = date_create_from_format('d/m/YH:i:s', $timestamp); echo date_format($timestamp, 'Ymd H:i:s');
Be careful with previous suggestions. Some of them are completely wrong, while others can lead to errors.
source share