Warning: file_put_contents(): Only -1 of 52 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
date_isodate_set date_offset_get Date/Time PHP Manual date_modify (PHP 5 >= 5.1.0) — Alters the timestamp Description void ( DateTime $object , string $modify ) DateTime::modify Parameters ob...
Forum und email

date_modify

(PHP 5 >= 5.1.0)

date_modify — Alters the timestamp

Description

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#1 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