この記事では、PHP で先月、今月、過去 15 日間、過去 30 日間を簡単に取得する方法を主に紹介し、PHP でカプセル化された日付とタイムスタンプの変換に関する操作スキルをカスタム関数を通じて分析します。例の形式。 必要な友達 次のように
の詳細を参照できます:
/** * 获取统计时间 * @param $type * 1 上月 * 2 本月 * 3 近15天 * 4 近30天 * @return array */ function getDateInfo($type) { $data = array( array( 'firstday' => date('Ym01', strtotime('-1 month')), 'lastday' => date('Ymt', strtotime('-1 month')), ), array( 'firstday' => date('Ym01', strtotime(date("Y-m-d"))), 'lastday' => date('Ymd', strtotime((date('Ym01', strtotime(date("Y-m-d")))) . " +1 month -1 day")), ), array( 'firstday' => date('Ymd', strtotime("-15 day")), 'lastday' => date('Ymd', strtotime('-1 day')), ), array( 'firstday' => date('Ymd', strtotime("-30 day")), 'lastday' => date('Ymd', strtotime('-1 day')), ), ); return is_null($type) ? $data : $data[$type-1]; } print_r(getDateInfo(1));//获取上个月第一天与最后一天
実行結果:
Array ( [firstday] => 20170601 [lastday] => 20170630 )
関連する推奨事項:
以上が前月、今月、過去15日間、過去30日間を取得するPHPメソッドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。