30 Nov 2013
Change Date Format in php
How to change date format in php?
we can display date in different formats in php as given:-
$dt = “2001/02/02”;
echo date(‘d M Y’, strtotime($dt));
echo date(‘d M Y’, strtotime($dt));
Output:- 02 Feb 2001
$dt = “2001/02/02”;
echo date(‘M d Y’, strtotime($dt));
echo date(‘M d Y’, strtotime($dt));
Output:- Feb 02 2001