Answers for "show only 3 initial letter of month in php"

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

Code answers related to "show only 3 initial letter of month in php"

Browse Popular Code Answers by Language