setTime() : sets the time in a DateTime object by specifying hours, minutes, and optionally seconds and microseconds

By using a date object we can set time to any value by using setTime property this format
setTime( Hour, minutes, seconds )
All above inputs are in integer.
Here are some examples.
date_default_timezone_set('America/Chicago');
$date = new DateTime('2012-04-15 22:15:40');
echo $date->format('Y/m/d H:i:s') . "<br>";
$date->setTime(23,30);
echo $date->format('Y/m/d H:i:s') . "<br>";
The output is here
2012/04/15 22:15:40
2012/04/15 23:30:00
We can change the setTime to different values and output will change like this .
$date->setTime(2,50,32);
output is here
2012/04/15 22:15:40
2012/04/15 02:50:32

Procedural style

$date = date_create('2020-08-16');
date_time_set($date, 24, 56,58);
echo date_format($date, 'Y-m-d H:i:s');
2020-08-17 00:56:58
In the above code check how the hour has changed the day by adding one.

Using today's date

$date = new DateTime();
$date->setTime(14,30,45, 500000); //2:30:45 PM and 500000 microseconds
echo $date->format('Y-m-d  H:i:s.u'); // Output: 14:30:45.500000
Output
2025-01-19  14:30:45.500000

Using Today's date and current time

$date = new DateTime(); // Current date and time
$currentHour = (int) $date->format('H');
$currentMinute = (int) $date->format('i');
$currentSecond = (int) $date->format('s');
$currentMicrosecond = (int) $date->format('u');

$date->setTime($currentHour, $currentMinute, $currentSecond, $currentMicrosecond);
echo $date->format('Y-m-d H:i:s.u'); // Output includes current date with precise time
Output ( refresh this page to see the changes )
2025-01-19 01:48:29.899328

PHP Date Functions setDate() : Set date for date object Timestamp in PHP Displaying calendar for selection of date by user
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com











    PHP video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer