Source Code:
(back to article)
<?php // Create a DateTime object from a formatted string $date = DateTime::createFromFormat('Y-m-d H:i:s', '2022-11-15 12:30:00'); // Format the DateTime object as a string echo $date->format('Y-m-d H:i:s'); // Output: 2022-11-15 12:30:00 ?>
Result:
Report an issue