Convert month number to string

by Ranganathan 2012-09-04 12:51:25


Convert month number to string


<?php
$month = 8;
print date("M", mktime(0, 0, 0, $month));
?>


Output :
Aug
775
like
0
dislike
0
mail
flag

You must LOGIN to add comments