Answers for "php convertir tipo date en str"

PHP
1

convertir datetime a string en php

phpCopy$theDate    = new DateTime('2020-03-08');
echo $stringDate = $theDate->format('Y-m-d H:i:s');

//output: 2020-03-08 00:00:00
Posted by: Guest on April-23-2021

Code answers related to "php convertir tipo date en str"

Browse Popular Code Answers by Language