Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
$date = new DateTimeImmutable('2023-09-27 11:32:17'); echo $date->format('Y-m-d H:i:s'); /* run: 2023-09-27 11:32:17 */
$date = new DateTimeImmutable('2023-09-27 11:32:17'); echo date_format($date, 'Y-m-d H:i:s'); /* run: 2023-09-27 11:32:17 */
$date = new DateTimeImmutable('2023-09-27 11:32:17'); echo $date->format('l jS \o\f F Y h:i:s A'); /* run: Wednesday 27th of September 2023 11:32:17 AM */
$date = new DateTimeImmutable('2023-09-27 11:32:17'); echo $date->format('l \t\h\e jS'); /* run: Wednesday the 27th */