要如何格式化时间???

2016-07-07 16:10 来源:www.chinab4c.com 作者:ecshop专家

index.php里


/**
* 获得最新热评
*/
function index_get_comment()
{
$sql="Select c.*,g.goods_id,g.goods_name,g.goods_thumb from ".$GLOBALS['ecs']->table('comment')." c, ".$GLOBALS['ecs']->table('goods')." g where c.id_value=g.goods_id and c.comment_type=0 and c.status=1 and c.parent_id=0 order by c.comment_id desc limit 0,6 ";
$res= $GLOBALS['db']->getAll($sql);
return $res;
}


这段代码,首页调用{$comment.add_time}

是这样的 time.jpg

回答:
顶一个,改时间我花了不少钱

那么如何改呢?


挺好,你只需要在
$res= $GLOBALS['db']->getAll($sql);
后面改动一点
foreach($res as $k=>$v)
{
$res[$k][add_time] = date("Y-h-d H:i:s",$v[add_time]);
}

哦,谢谢~~~