Mega Code Archive

 
Categories / Php / Code Snippets
 

Some date and time examples

<?php $theDate = time(); print date('d-m-y',$theDate); print ("<br>"); print date('d-m-Y',$theDate); print ("<br>"); print date('D-M-Y',$theDate); print ("<br>"); print date('G-i-s',$theDate); ?>