PHP DateTime Agregar 1 Weeek

$date = new DateTime();
$date->modify('+1 day');
$date->modify('+5 week');
Homeless Hoopoe