DateTime
PHP Manual

DateTime::modify

(PHP 5 >= 5.2.0)

DateTime::modifyAlters the timestamp

Opis

Styl obiektowy

public DateTime DateTime::modify ( string $modify )

Styl proceduralny

DateTime date_modify ( DateTime $object , string $modify )

Alter the timestamp of a DateTime object by incrementing or decrementing in a format accepted by strtotime().

Parametry

object

Procedural style only: A DateTime object returned by date_create(). The function modifies this object.

modify

A date/time string. Valid formats are explained in Date and Time Formats.

Zwracane wartości

Returns the modified DateTime object lub FALSE w przypadku błędu.

Rejestr zmian

Wersja Opis
5.3.0Zmieniono zwracaną wartość z NULL na DateTime.

Przykłady

Przykład #1 DateTime::modify() example

Styl obiektowy

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

Styl proceduralny

<?php
$date 
date_create('2006-12-12');
date_modify($date'+1 day');
echo 
date_format($date'Y-m-d');
?>

Powyższe przykłady wyświetlą:

2006-12-13

Przykład #2 Beware when adding or subtracting months

<?php
$date 
= new DateTime('2000-12-31');

$date->modify('+1 month');
echo 
$date->format('Y-m-d') . "\n";

$date->modify('+1 month');
echo 
$date->format('Y-m-d') . "\n";
?>

Powyższy przykład wyświetli:

2001-01-31
2001-03-03

Zobacz też:


DateTime
PHP Manual