Mega Code Archive

 
Categories / Php / Date Time
 

Finding the month, day, and year

<?php $a = getdate(); printf('%s %d, %d',$a['month'],$a['mday'],$a['year']); ?>