<!DOCTYPE html>
<html>
<body>

<?php
$date=date_create("2016-09-25");
date_modify($date,"+4 days");
echo date_format($date,"Y-m-d");
?>

</body>
</html>