|
@@ -51,6 +51,7 @@ class MeetingModel extends BaseModel
|
|
|
$startTime = $this->start_at? strtotime($this->start_at) : 0;
|
|
$startTime = $this->start_at? strtotime($this->start_at) : 0;
|
|
|
$endTime = $this->end_at? strtotime($this->end_at) : time();
|
|
$endTime = $this->end_at? strtotime($this->end_at) : time();
|
|
|
$w = datetime('w',$startTime);
|
|
$w = datetime('w',$startTime);
|
|
|
|
|
+ var_dump($w);
|
|
|
$week = isset($weeks[$w])?' '.$weeks[$w].' ': '';
|
|
$week = isset($weeks[$w])?' '.$weeks[$w].' ': '';
|
|
|
$startAt = $this->start_at? datetime($this->start_at,"Y年m月d日").$week.datetime($this->start_at,"H:i") : '';
|
|
$startAt = $this->start_at? datetime($this->start_at,"Y年m月d日").$week.datetime($this->start_at,"H:i") : '';
|
|
|
|
|
|