DateInterval类的未记录的属性

时间:2019-05-30 04:44:55

标签: properties php-7.2 dateinterval

当我在PHP 7.2.1中包装DateInterval对象时,得到以下输出:

object(DateInterval)#4 (16) {
  ["y"]=>
  int(0)
  ["m"]=>
  int(0)
  ["d"]=>
  int(14)
  ["h"]=>
  int(0)
  ["i"]=>
  int(0)
  ["s"]=>
  int(0)
  ["f"]=>
  float(0)
  ["weekday"]=>
  int(0)
  ["weekday_behavior"]=>
  int(0)
  ["first_last_day_of"]=>
  int(0)
  ["invert"]=>
  int(0)
  ["days"]=>
  int(14)
  ["special_type"]=>
  int(0)
  ["special_amount"]=>
  int(0)
  ["have_weekday_relative"]=>
  int(0)
  ["have_special_relative"]=>
  int(0)
}

another thread个问题相同,但被标记为重复。 link given here没有描述我想知道的内容。

注意:我能够访问这些DateInterval对象的所有属性。我需要一些关于documentation中未提及的属性的知识。

请告诉我这些属性是什么?

  • 工作日
  • weekday_behavior
  • weekday_behavior
  • first_last_day_of
  • 反转special_type
  • 特殊金额
  • have_weekday_relative
  • have_special_relative

0 个答案:

没有答案