Jump to content

adjustments to datetime objects


chiprivers

Recommended Posts

I have a function that receives two datetime values attached to the variables $start and $end.  These will be in the format 'Y-m-d H:i:s'.

 

For each of these values, I create a DateTime object to make the handling of them easier:

 

$startDT = DateTime::createFromFormat('Y-m-d H:i:s', $start);$endDT = DateTime::createFromFormat('Y-m-d H:i:s', $end);

 

 

What I need to do now is ensure that the seconds of the $startDT value are always set to '00' and the seconds of the $endDT value are always set to '59'.

 

Is there an easy way to do this without having to extract the individual values for hours, minutes and seconds before reapplying them using the setTime function, adjusting the values accordingly?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.