Answers for "convert string to time in php"

PHP
0

string to datetime php

$s = '06/10/2011 19:00:02';
$date = strtotime($s);
echo date('d/M/Y H:i:s', $date);
Posted by: Guest on May-25-2020
0

Convert String to Date and Date-Time in PHP

phpCopyecho $dateNew = DateTime::createFromFormat('m-d-Y', '03-08-2020')->format('Y/m/d');
//output: 2020/03/08
Posted by: Guest on April-23-2021

Code answers related to "convert string to time in php"

Browse Popular Code Answers by Language