我正在尋找一種方法來顯示日曆上的星期編號。 現在,我發送年份和月份來創建日曆。然後,如果需要更多日曆,我會重複視圖上的代碼。Codeigniter日曆庫顯示相應的星期編號
我在我的控制器上使用以下偏好設置。
$prefs = array(
'start_day' => 'monday',
'month_type' => 'long',
'day_type' => 'abr'
);
查看:
$thisyear = $todaysdate->format('Y');
$thismonth = $todaysdate->format('m');
echo $this->calendar->generate($thisyear,$thismonth++);
如何做到這一點任何想法?
@the結束,我需要:
2017年四月
|我們|莫|塗|我們|釷| FR | SA |蘇
| 13 | | | | | | | 1 | 2 |
| 14 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 15 | 10 | 11 | | 13 | 14 | 15 | 16 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 17 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |