Answers for "php iso 8601 date format with second"

PHP
2

php convert date and time to iso 8601

//Object Oriented Method

$datetime = new DateTime('2010-12-30 23:21:46');

echo $datetime->format(DateTime::ATOM); // Updated ISO8601


//Procedural Method

echo date(DATE_ISO8601, strtotime('2010-12-30 23:21:46'));
Posted by: Guest on April-03-2020
1

format datetime ISO php

$startTime 	= new DateTime($appointment_date . ' ' . $booking_slot[0]); // 2021-12-28 0900
$startTime	= $startTime->format('Y-m-d\TH:i:sp'); // 2021-12-25T12:02:00Z
Posted by: Guest on December-24-2021

Browse Popular Code Answers by Language