In PHP, how could I create a variable called $livetime that equals the current time minus 1 hour?
Thanks,
John
|
In PHP, how could I create a variable called Thanks, John |
|||||
|
|
Just to provide another way. One without all the math and IMO reads better.
|
||||
|
|
See time PHP function for more information. |
|||||||
|
|
If you're looking for how to display the time in a human readable format, these examples will help:
|
|||
|
|
|
Assuming that a timestamp is fine you can use the
|
|||
|
|
|
Here you go:
|
|||
|
|
|
Current time is equal to Thus, to calculate what you need, you need to perform calculation:
|
|||
|
|
|
First convert hours into seconds (
|
|||
|
|