PHP date_time_set() Function
Example
Set the time:
<?php
$date=date_create("2013-05-01");
date_time_set($date,13,24);
echo date_format($date,"Y-m-d H:i:s");
?>
Try it Yourself »
Definition and Usage
The date_time_set() function sets the time.
Syntax
date_time_set(object, hour, minute, second, microseconds)
Parameter Values
Parameter | Description |
---|---|
object | Required. Specifies a DateTime object returned by date_create() |
hour | Required. Specifies the hour of the time |
minute | Required. Specifies the minute of the time |
second | Optional. Specifies the second of the time. Default is 0 |
microseconds | Optional. Specifies the microsecond of the time. Default is 0 |
Technical Details
Return Value: | Returns a DateTime object on success. FALSE on failure |
---|---|
PHP Version: | 5.2+ |
PHP Changelog: | PHP 7.1: Added microseconds parameter PHP 5.3: Changed the return value from NULL to DateTime |
❮ PHP Date/Time Reference