Convert Timestamp To Date Php Code Example


Example 1: php timestamp to date


<?php 
echo date('m/d/Y H:i:s', 1541843467);
?>

Example 2: php datetime to timestamp


$time = '2021-03-31 23:59:00';
strtotime($time);

Example 3: php timestamp to date


<?php 
echo date('m/d/Y H:i:s', 1541843467);
?>

Example 4: convert timestamp to date php


<?php
$date = new DateTime();
echo $date->format('U = Y-m-d H:i:s') . "\n";

$date->setTimestamp(1171502725);
echo $date->format('U = Y-m-d H:i:s') . "\n";
?>

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy