This method is retuning an atom date format instead of ISO8601
public function toIso8601String()
{
return $this->toAtomString();
}
http://php.net/manual/en/class.datetime.php#datetime.constants.iso8601
_Note: This format is not compatible with ISO-8601, but is left this way for backward compatibility reasons. Use DateTime::ATOM or DATE_ATOM for compatibility with ISO-8601 instead._
Most helpful comment
http://php.net/manual/en/class.datetime.php#datetime.constants.iso8601
_Note: This format is not compatible with ISO-8601, but is left this way for backward compatibility reasons. Use DateTime::ATOM or DATE_ATOM for compatibility with ISO-8601 instead._