Answers for "three letter of month php date"

PHP
0

show only 3 initial letter of month in php

$dt = DateTime::createFromFormat('!d/m/Y', '24/12/2013');
echo strtoupper($dt->format('j M')); # 24 DEC
Posted by: Guest on June-16-2021
0

month php written out

$monthName = date("F");
Posted by: Guest on September-09-2021

Browse Popular Code Answers by Language