JavaScript Editor Javascript debugger     Website design 


date_modify

Alters the timestamp (PHP 5 >= 5.1.0)
void date_modify ( DateTime object, string modify )
void DateTime::modify ( string modify )

Parameters

object

DateTime object.

modify

String in a relative format accepted by strtotime().

Return Values

Returns NULL on success or FALSE on failure.

Examples

Example 440. A date_modify() example

<?php
$date
= new DateTime("2006-12-12");
$date->modify("+1 day");
echo
$date->format("Y-m-d");
?>

The above example will output:

2006-12-13


See Also
strtotime()