Answers for "date to unix timestamp php"

PHP
2

php convert unix time to date

<?php
$timestamp=1333699439;
echo gmdate("Y-m-d\TH:i:s\Z", $timestamp);
?>
Posted by: Guest on June-18-2020
0

timestamp php

<?php
$date = new DateTime();
echo $date->getTimestamp();
?>
Posted by: Guest on September-11-2020
1

php datetime object get unix timestamp

$date = new DateTime();
echo $date->getTimestamp();
Posted by: Guest on April-01-2020
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
1

strtotime format

$date = '25/05/2010';
$date = str_replace('/', '-', $date);
echo date('Y-m-d', strtotime($date));
Posted by: Guest on June-03-2020
2

php start of day epoch

$beginOfDay = strtotime("today", $timestamp);
$endOfDay   = strtotime("tomorrow", $beginOfDay) - 1;
Posted by: Guest on September-15-2020

Code answers related to "date to unix timestamp php"

Browse Popular Code Answers by Language