帝國cms內容頁模板把當前文章發布時間改成幾年幾月幾號星期幾顯示方式
把下面代碼加到帝國cms內容頁模板最頭部
<?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))];?>
在帝國cms內容頁模板需要顯示的地方加入以下代碼<?=$y?>年<?=$m?>月<?=$d?>號,星期<?=$date?>
責任編輯:實速科技