PHP格式化时间,形如(Wed 30,Jul 2008)

来源:互联网 发布:大数据飞轮效应 编辑:程序博客网 时间:2024/04/25 00:03
<script type="text/javascript"><!--google_ad_client = "pub-4490194096475053";/* 内容页,300x250,第一屏 */google_ad_slot = "3685991503";google_ad_width = 300;google_ad_height = 250;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>

 <?php $showtime2=strtotime($myrow["updatetime"]);
 
 echo date("D d,M Y",$showtime2);?>

其中

updatetime,形如2008-06-20 01:16:20

格式化后,形如 形如(Wed 30,Jul 2008)

原创粉丝点击