Answers for "php time to timestamp online"

PHP
10

php timestamp to date

<?php 
echo date('m/d/Y H:i:s', 1541843467); 
?>
Posted by: Guest on May-22-2020
2

php datetime to timestamp

$time = '2021-03-31 23:59:00';
strtotime($time);
Posted by: Guest on March-22-2021

Code answers related to "php time to timestamp online"

Browse Popular Code Answers by Language