Answers for "string to time php print only month"

PHP
10

php timestamp to date

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

php date strtotime format

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

Browse Popular Code Answers by Language