Dreamweaver は、特定の期間に公開された記事をどのように呼び出しますか?
Dreamweaver DEDECMS は、特定の期間に公開された記事を呼び出します。記事
推奨学習: 梦Weavercms
//制限時間 (最近の人気記事、人気コメントなどを呼び出すために使用)、ここでの時間は次までにのみ計算できます。
//subday=1 の場合、1 日以内に記事を呼び出します。
//subday=2 の場合、昨日の記事を呼び出します。
//subday=3 の場合、すべて呼び出します。 2 日前の記事
//subday=7 の場合、7 日以内のすべての記事を呼び出します
if($subday > 0) { if($subday == 1) { $ntime = gmmktime(0, 0, 0, gmdate('m'), gmdate('d'), gmdate('Y')); $limitday = $ntime - ($subday * 24 * 3600); $orwheres[] = " arc.senddate > $limitday "; } else if ($subday == 2) { $ntime = gmmktime(0, 0, 0, gmdate('m'), gmdate('d'), gmdate('Y')); $limitday = $ntime - ($subday * 24 * 3600); $lomitday = $ntime; $orwheres[] = " arc.senddate > $lomitday && arc.senddate < $limitday"; } else if ($subday == 3) { $ntime = gmmktime(0, 0, 0, gmdate('m'), gmdate('d'), gmdate('Y')); $limitday = $ntime -($subday * 24 * 3600)+(1*24 * 3600); $orwheres[] = " arc.senddate < $limitday "; } else if ($subday == 7) { $ntime = gmmktime(0, 0, 0, gmdate('m'), gmdate('d'), gmdate('Y')); $limitday = $ntime - ($subday * 24 * 3600); $orwheres[] = " arc.senddate > $limitday "; } } }
以上がDreamWeaver では、特定の期間に公開された記事をどのように呼び出しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。