<?php
/**
* @param \DateTime $date Date of the original meeting
* @return \DateTime Date of the next meeting
*/
function getSameDayNextYear(\DateTime $date = null)
{
if(!$date){
$date = new \DateTime();
}
return (new \DateTime())->setISODate((int)$date->format('o') + 1, (int)$date->format('W'), (int)$date->format('N'));
}
$start = new \DateTime();
$end = new \DateTime('+ 4 months');
$interval = new \DateInterval('P5D');
$period = new \DatePeriod($start, $interval, $end);
$format = 'l d-m-Y';
$date = new \DateTime('2014-05-23');
for($i = 0; $i < 100; $i++){
echo $date->format($format) . "\n";
$date = getSameDayNextYear($date);
}
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/3cLIS on line 11
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 6
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 9
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 11
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/3cLIS on line 11
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 6
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 9
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 11
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/3cLIS on line 11
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 6
Parse error: syntax error, unexpected T_STRING, expecting ')' in /in/3cLIS on line 6
Process exited with code 255.
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 6
Parse error: parse error, unexpected T_STRING, expecting ')' in /in/3cLIS on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/3cLIS on line 6
Parse error: parse error, expecting `')'' in /in/3cLIS on line 6
Process exited with code 255.