(PHP 5 >= 5.2.0, PHP 7)
DateTime::setTime -- date_time_set — Sets the time
Stil obiect-orientat
Stil procedural
Resets the current time of the DateTime object to a different time.
object
Doar stilul procedural: Un obiect DateTime întors de date_create(). Funcția modifică acest obiect.
hour
Hour of the time.
minute
Minute of the time.
second
Second of the time.
Întoarce obiectul
DateTime pentru
înlănțuirea metodelor sau FALSE
în cazul eșecului.
Versiune | Descriere |
---|---|
5.3.0 | A fost schimbată valoarea întoarsă în caz de succes
din NULL în DateTime. |
Example #1 DateTime::setTime() example
Stil obiect-orientat
<?php
$date = new DateTime('2001-01-01');
$date->setTime(14, 55);
echo $date->format('Y-m-d H:i:s') . "\n";
$date->setTime(14, 55, 24);
echo $date->format('Y-m-d H:i:s') . "\n";
?>
Stil procedural
<?php
$date = date_create('2001-01-01');
date_time_set($date, 14, 55);
echo date_format($date, 'Y-m-d H:i:s') . "\n";
date_time_set($date, 14, 55, 24);
echo date_format($date, 'Y-m-d H:i:s') . "\n";
?>
Exemplele de mai sus vor afișa ceva similar cu:
2001-01-01 14:55:00 2001-01-01 14:55:24
Example #2 Values exceeding ranges are added to their parent values
<?php
$date = new DateTime('2001-01-01');
$date->setTime(14, 55, 24);
echo $date->format('Y-m-d H:i:s') . "\n";
$date->setTime(14, 55, 65);
echo $date->format('Y-m-d H:i:s') . "\n";
$date->setTime(14, 65, 24);
echo $date->format('Y-m-d H:i:s') . "\n";
$date->setTime(25, 55, 24);
echo $date->format('Y-m-d H:i:s') . "\n";
?>
Exemplul de mai sus va afișa:
2001-01-01 14:55:24 2001-01-01 14:56:05 2001-01-01 15:05:24 2001-01-02 01:55:24