Answers for "get string convert to date php"

PHP
7

php convert string to date

$time = strtotime('10/16/2003');

$newformat = date('Y-m-d',$time);

echo $newformat;
// 2003-10-16
Posted by: Guest on February-28-2020
1

convert string to datetime javascript

var s = '01-01-1970 00:03:44';
var d = new Date(s);
console.log(d); // ---> Thu Jan 01 1970 00:03:44 GMT-0500 (Eastern Standard Time)
Posted by: Guest on May-05-2020

Code answers related to "get string convert to date php"

Browse Popular Code Answers by Language