Php, Date Format throwing away the '0' in front of single digit date -
when below code:
date("d/m/y", $date)
it gives me
04/06/15
how can make such way return
4/6/15
what modifications must in order desired output? please advise thanks.
date("j/n/y", $date);
try one
Comments
Post a Comment