Adjust the timestamp by adding 15 days.
<?php $date=date_create(“2013-05-01”); date_modify($date,“+15 days”); echo date_format($date,“Y-m-d”); ?> |
The date_modify() function adjusts the timestamp.
date_modify(object, modify) |
Parameter |
Description |
object |
Required. Specifies a DateTime object created by date_create(). |
modify |
Required. Specifies a date/time string. |
Return Value: |
|
PHP Version: |
5.2+ |
PHP Changelog: |
Returns a DateTime object on success; FALSE on failure. |