Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php convert string to date

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

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

echo $newformat;
// 2003-10-16
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #php #convert #string #date
ADD COMMENT
Topic
Name
4+7 =