我几乎有这个
$this->fecha = '2013 05-05 05:55:05'
$yearvalue = date("Y", strtotime($this->fecha) );
$monthname = date("F", strtotime($this->fecha) );
$dayvalue = date("d", strtotime($this->fecha) );
$printFecha = "$dayvalue of $monthname $yearvalue";
2013年5月5日的输出
我怎样才能得到星期几的名字?
答案 0 :(得分:1)
使用2005-05-12的日期:
echo date("l", mktime(0, 0, 0, 5, 12, 2005));
你得到'星期四'。
答案 1 :(得分:1)
你可以这样做,
echo date('l j \of F Y', $this->date);
您的输出将是这样的
Sunday 5 of May 2013