Answers for "timestamp to unix time in php"

PHP
3

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
Posted by: Guest on February-24-2020
1

php unix timestamp to date

$currentTime = DateTime::createFromFormat( 'U', $timestamp );
Posted by: Guest on November-05-2020
1

how to convert unix timestamp to date php

$unix_timestap  = microtime(true);
$date_time  	= gmdate("Y-m-d\TH:i:s\Z",  (int)$unix_timestap);
Posted by: Guest on December-25-2021

Code answers related to "timestamp to unix time in php"

Browse Popular Code Answers by Language