update : 2015.11.03
php.shukuma.com검색:
|
DatePeriod::__construct(PHP 5 >= 5.3.0, PHP 7) DatePeriod::__construct — Creates a new DatePeriod object 설명
public DatePeriod::__construct
( DateTimeInterface
$start
, DateInterval $interval
, int $recurrences
[, int $options
] )
public DatePeriod::__construct
( DateTimeInterface
$start
, DateInterval $interval
, DateTimeInterface $end
[, int $options
] )
public DatePeriod::__construct
( string
$isostr
[, int $options
] )Creates a new DatePeriod object. 인수
변경점
예제
Example #1 DatePeriod example
<?php 위 예제의 출력: 2012-07-01 2012-07-08 2012-07-15 2012-07-22 2012-07-29
Example #2 DatePeriod example with
<?php 위 예제의 출력: 2012-07-08 2012-07-15 2012-07-22 2012-07-29 |