Answers for "php get time"

PHP
22

php get current date and time

$today = date("F j, Y, g:i a");   // October 30, 2019, 10:42 pm
$today = date("D M j G:i:s T Y"); // Wed Oct 30 22:42:18 UTC 2019
$today = date("Y-m-d H:i:s");     // 2019-10-30 22:42:18(MySQL DATETIME format)
Posted by: Guest on October-30-2019
2

php current time

echo date('Y-m-d H:i:s');

//Output something like this:
//2021-07-30 10:07:45
Posted by: Guest on July-30-2021
1

php current time

# Current Time
date_default_timezone_set("America/New_York");
echo "The time is " . date("h:i:sa");
Posted by: Guest on March-03-2021
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
1

display time php

date(format,timestamp) 
//example
date("Y.m.d") //default timestamp is current time.
Posted by: Guest on January-18-2021
3

time php

<?php 
/* Unix Timestamp */
$timestamp = time();
echo $timestamp . "<br>";
echo date("d/m/Y", $timestamp);
?>
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language