A 4th parameter has been added in PHP-7.1 : microseconds
See the notes here:
https://github.com/php/php-src/blob/e33ec61f9c1baa73bfe1b03b8c48a824ab2a867e/UPGRADING#L285
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTime::setTime -- date_time_set — Assigne l'heure
Style orienté objet
Style procédural
$object
,$hour
,$minute
,$second
= 0,$microsecond
= 0Change le temps dans l'objet DateTime.
Comme DateTimeImmutable::setTime() mais fonctionne avec DateTime.
La version procédurale prend un objet DateTime comme premier argument.
object
Style procédural uniquement : Un objet DateTime retourné par la fonction date_create(). Cette fonction modifie cet objet.
hour
Heure du moment.
minute
Minute du moment.
second
Seconde du moment.
microsecond
Microsecondes du moment.
Retourne l'objet modifié DateTime pour chainer les méthodes.
Version | Description |
---|---|
8.1.0 | Le comportement avec les heures doubles existantes (pendant la transition DST) a changé. Auparavant, PHP choisissait la deuxième occurrence (après la transition DST), au lieu de la première occurrence (avant la transition DST). |
7.1.0 |
Le paramètre microsecond a été ajouté.
|
A 4th parameter has been added in PHP-7.1 : microseconds
See the notes here:
https://github.com/php/php-src/blob/e33ec61f9c1baa73bfe1b03b8c48a824ab2a867e/UPGRADING#L285
Be aware that setTime can cause a change in the timezone offset: https://3v4l.org/MqYN9
(The time 01:05:00 exists twice on this day in Europe/London due to DST change - once in +01:00 and then again at +00:00)
$tzUK = new \DateTimeZone("Europe/London");
$tzUtc = new \DateTimeZone("UTC");
$dt = \DateTimeImmutable::createFromFormat("!Y-m-d H:i:s", "2020-10-25 00:05:00", $tzUtc);
$dt = DateTime::createFromFormat('U', $dt->format('U'));
print $dt->format(\DateTime::RFC3339 ." e") ."\n";
$dt->setTimeZone($tzUK);
print $dt->format(\DateTime::RFC3339 ." e") ."\n";
$dt->setTime((int) $dt->format('H'), (int) $dt->format('i'), 0);
print $dt->format(\DateTime::RFC3339 ." e") ."\n";
Will output:
2020-10-25T00:05:00+00:00 +00:00
2020-10-25T01:05:00+01:00 Europe/London
2020-10-25T01:05:00+00:00 Europe/London
Verified on PHP 5.3 thru 8.0 (latest at time of posting)