我在一段時間內使用strtotime來自動更新數據庫中的條目。使用strtotime忽略/跳過週末
這取決於用戶在前一頁中陳述的內容而增加了一定天數。
使用此代碼:
$calendardate = strtotime ('+'.$calendarday.' day' , strtotime ($date)) ;
$calendardate = date ('Y-m-d' , $calendardate);
我怎樣才能得到它跳過週末?我需要使用相同的變量($ calendardate),但我需要它忽略週六和週日。
任何幫助最讚賞:)
您正在使用哪個SQL? MySQL的? – Johan
是MySQL和PHP。 –