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

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable