内容页时间标签函数:$navinfor[newstime]
对函数格式进行转换,代码如下:
<?php
$xq=date('Y-m-d',$navinfor[newstime]); //发布时间
$y=date('Y',$navinfor[newstime]); //年份
$m=date('m',$navinfor[newstime]); //月份
$d=date('d',$navinfor[newstime]); //几号
$weekarray=array("日","一","二","三","四","五","六");
$date=$weekarray[date("w",strtotime($xq))];
?>
将以上代码放到合适位置,再在调用的地方插入如下代码:
<?=$y?>年<?=$m?>月<?=$d?>号,星期<?=$date?>
这样就显示非常完整的时间信息了,包含星期几。
本文摘自网络,不代表短经典网立场 https://www.duanjingdian.com/504.html