zoukankan      html  css  js  c++  java
  • 本月第一周的第一天

        /**
        * 本月第一周的第一天
        *
        * @access private
        * @param
        * @return
        */
        private function get_first_day_in_this_week_month() {
            $return = '';

            $today = getdate();
            $i = mktime(0,0,0,$today['mon'],1,$today['year']);

            $str = '';
            while(1){
                $day = getdate($i);
                if ($day['mon']!=$today['mon']) break;
                if ($day['wday']==0) {
                    $str = "{$day['year']}-{$day['mon']}-{$day['mday']} 00:00:00";
                    break;
                }
                $i+=24*3600;
            }

            $return = date('Y-m-d H:i:s', strtotime($str));
            return $return;

        }
  • 相关阅读:
    OSU!

    旅行
    序列
    致摸鱼两千年后的你
    生成函数
    小x游世界树

    画画
    OSU!
  • 原文地址:https://www.cnblogs.com/phonecom/p/7201651.html
Copyright © 2011-2022 走看看