<?php $ts = new DateTimeImmutable("2019-05-30 10:30:59"); $new = $ts->modify("+2 days"); echo $ts->format(DateTime::RFC2822), "\n"; echo $new->format(DateTime::RFC2822), "\n";?>