建议官方在Date类加上魔术方法__get

jerry thinkphp 2015年11月19日 收藏
最近写项目用到了内置的Date类,发现在没有__get方法,非常不方便。
建议官方给加上。

由于没有__get 魔术方法,实例化类之后,下面这些形同虚设,非常不方便。
  1.     /**
  2.      * 日期的时间戳
  3.      * @var integer
  4.      * @access protected
  5.      */
  6.      protected $date;

  7.     /**
  8.      * 时区
  9.      * @var integer
  10.      * @access protected
  11.      */
  12.      protected $timezone;

  13.     /**
  14.      * 年
  15.      * @var integer
  16.      * @access protected
  17.      */
  18.      protected $year;

  19.     /**
  20.      * 月
  21.      * @var integer
  22.      * @access protected
  23.      */
  24.      protected $month;

  25.     /**
  26.      * 日
  27.      * @var integer
  28.      * @access protected
  29.      */
  30.      protected $day;

  31.     /**
  32.      * 时
  33.      * @var integer
  34.      * @access protected
  35.      */
  36.      protected $hour;

  37.     /**
  38.      * 分
  39.      * @var integer
  40.      * @access protected
  41.      */
  42.      protected $minute;

  43.     /**
  44.      * 秒
  45.      * @var integer
  46.      * @access protected
  47.      */
  48.      protected $second;

  49.     /**
  50.      * 星期的数字表示
  51.      * @var integer
  52.      * @access protected
  53.      */
  54.      protected $weekday;

  55.     /**
  56.      * 星期的完整表示
  57.      * @var string
  58.      * @access protected
  59.      */
  60.      protected $cWeekday;

  61.     /**
  62.      * 一年中的天数 0-365
  63.      * @var integer
  64.      * @access protected
  65.      */
  66.      protected $yDay;

  67.     /**
  68.      * 月份的完整表示
  69.      * @var string
  70.      * @access protected
  71.      */
  72.      protected $cMonth;

  73.     /**
  74.      * 日期CDATE表示
  75.      * @var string
  76.      * @access protected
  77.      */
  78.      protected $CDATE;

  79.     /**
  80.      * 日期的YMD表示
  81.      * @var string
  82.      * @access protected
  83.      */
  84.      protected $YMD;

  85.     /**
  86.      * 时间的输出表示
  87.      * @var string
  88.      * @access protected
  89.      */
  90.      protected $CTIME;
// 添加__get魔术方法
  1. // 改良Date
  2.     public function __get($name){
  3.         return isset($this->$name)?$this->$name:null;
  4.     }
个人愚见,如有不适当之处,勿喷。