我目前有:
$date = $this->item->publish_up;
echo $date
返回: 2013-07-19 09:28:05
如何将其转换为文本,例如 2012 年 11 月 8 日星期四 00:00?
我努力了:
$date = $this->item->publish_up;
$new_date = date('m-d-y', strtotime($date));
echo date("format",strtotime($new_date))
但它返回:f1970Thu,1970 年 1 月 1 日 02:00:00 +020001am31
非常感谢任何帮助