php echo timestamp code example

Example 1: timestamp php

<?php
$date = new DateTime();
echo $date->getTimestamp();
?>

Example 2: unix timestamp in php

strtotime("now");

// strtotime is a function that will take a string parameter 
// that specifies a date, and returns a unix time stamp bassed
// on that

echo strtotime("2020-02-24");

// prints: 1582502400

Example 3: php timestamp

<?php

echo time();

?>

Example 4: time php

<?php 
/* Unix Timestamp */
$timestamp = time();
echo $timestamp . "<br>";
echo date("d/m/Y", $timestamp);
?>

Example 5: php time

<?php
$t=time();
echo($t . "<br>");
echo(date("Y-m-d",$t));
?>

Example 6: timestamp php

<?php
$date = date_create();
echo date_timestamp_get($date);
?>

Tags:

Php Example