Answers for "convert timestamp to month in string php"

PHP
1

php convert number to month

$monthNum  = 3;
$monthName = date('F', mktime(0, 0, 0, $monthNum, 10)); // March
Posted by: Guest on January-04-2021
2

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";
?>
Posted by: Guest on January-27-2021

Code answers related to "convert timestamp to month in string php"

Browse Popular Code Answers by Language