什么是这个日期的PHP的日期格式

What's the date-format in php of the date like 01:29:51 Dec 23, 2013. I know this is a very simple question,but i couldn't find out in google. Thanks in advance ..

Format is probably H:i:s M j, Y

see more here

<?php
echo date("H:i:s M d,Y",time());
?>

Here you go:

$format = date('H:i:s M d, Y');

Use following code:

 <?php
 echo date('h:i:s M d, Y');
 ?>