Answers for "date to string with format php"

PHP
0

date to string in php

Date to string

$date = "2021/03/13";
$newdate= date('d M, Y', strtotime($date));
echo $newdate;
Posted by: Guest on March-13-2021

Browse Popular Code Answers by Language