Jump to content

Add/Subtract one second from date("Y-m-d H:i:s");


jmurch

Recommended Posts

I am trying to work around something and need to add and subtract one second  to the times.  I'm using the format:

 

$now = date("Y-m-d H:i:s");

 

I need to ultimatley have the results such as:

 

$now = (date("Y-m-d H:i:s") - :01);

 

or

 

$now = (date("Y-m-d H:i:s") + :01);

 

TIA, Jeff

 

Link to comment
Share on other sites

You can add a unix timestamp into the second parameter of the date() function in order to use your own time stamp and have it formatted via date.. In this case, your own time stamp would be the current time minus 1 second. You can get the current time stamp using the time() function. So if we do

$time = time() -1;//time stamp is in seconds, so now -1 would be the current date minus 1

$now = date("Y-m-d H:i:s", $time);

 

 

Hope this helps

 

Edit: Ninjad by xyph, but I believe xyph mean to use time() instead of timestamp() (correct me if I'm wrong) So im posting anyways

 

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.