Answers for "how to get current date in php with time"

PHP
2

php get current time and date

date("Y-n-j G:i:s");
//-->2020-10-29 23:27:15
Posted by: Guest on October-29-2020
0

get current date from year input php

$date_input = '2003';
$date_output= date( "Y-m-d", mktime( 0, 0, 0, 1, 1, $date_input ));
//date_output = 2003-01-01
Posted by: Guest on July-17-2020

Code answers related to "how to get current date in php with time"

Browse Popular Code Answers by Language