Answers for "timestamp php milliseconds"

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

php timestamp

<?php

echo time();

?>
Posted by: Guest on March-19-2020

Code answers related to "timestamp php milliseconds"

Browse Popular Code Answers by Language