array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'datetime.modify.php', 1 => 'DateTime::modify', 2 => 'Alters the timestamp', ), 'up' => array ( 0 => 'class.datetime.php', 1 => 'DateTime', ), 'prev' => array ( 0 => 'datetime.getlasterrors.php', 1 => 'DateTime::getLastErrors', ), 'next' => array ( 0 => 'datetime.set-state.php', 1 => 'DateTime::__set_state', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/datetime/datetime/modify.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

DateTime::modify

date_modify

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

DateTime::modify -- date_modifyAlters the timestamp

Descrizione

Stile orientato agli oggetti

public DateTime::modify(string $modifier): DateTime

Stile procedurale

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

Elenco dei parametri

oggetto

Solo per lo stile procedurale: Un oggetto DateTime restituito da date_create(). La funzione modifica questo oggetto.

modifier

Una stringa data/ora. I formati validi sono descritti in Formati di Data e Tempo.

Valori restituiti

Returns DateTime on success. Stile procedurale restituisce false in caso di fallimento.

Errori/Eccezioni

Object Oriented API only: If an invalid Date/Time string is passed, DateMalformedStringException is thrown.

Log delle modifiche

Versione Descrizione
8.3.0 DateTime::modify() now throws DateMalformedStringException if an invalid string is passed. Previously, it returned false, and a warning was emitted. date_modify() has not been changed.

Esempi

Example #1 DateTime::modify() example

Stile orientato agli oggetti

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

Il precedente esempio visualizzerà:

2006-12-13

Stile procedurale

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

Il precedente esempio visualizzerà:

2006-12-13

Example #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";

Il precedente esempio visualizzerà:

2001-01-31
2001-03-03

Example #3 All formats of Date and Time are supported

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

$date->modify('July 1st, 2023');
echo
$date->format('Y-m-d H:i') . "\n";

$date->modify('Monday next week');
echo
$date->format('Y-m-d H:i') . "\n";

$date->modify('17:30');
echo
$date->format('Y-m-d H:i') . "\n";

Il precedente esempio visualizzerà:

2023-07-01 00:00
2023-07-03 00:00
2023-07-03 17:30

Vedere anche: