Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
11-13-2008, 02:21 AM
|
#1
|
Member
Registered: Jun 2002
Location: L.A.
Distribution: Fedora
Posts: 46
Rep:
|
PHP: formatting current date & time as: 2006-04-12 13:47:36 and substract 15 minutes
Hello community,
I want to format PHP date and time to:
2006-04-12 13:47:36
and then substract 15 minutes, so the final result will be:
2006-04-12 13:32:36
So far I got this to format the current date & time:
$current_time=date("Y-n-j G:m:s");
But now I am stuck trying to figure out how to substract 15 minutes.
I will apreciate any help.
Thank you,
NACO.
|
|
|
11-13-2008, 03:27 AM
|
#2
|
Member
Registered: Jun 2002
Location: L.A.
Distribution: Fedora
Posts: 46
Original Poster
Rep:
|
Resolved.
Bingo!
Here is the code to get what I needed:
Code:
<?php
//Right now date and time. Format: 2008-11-13 3:12:33
echo '<b>Date and Time when this page was fetched from server:</b><br>'.date("Y-n-j G:i:s");
//15 minutes ago date and time: Format:2008-11-13 2:57:33
$past_time = date('Y-n-j G:i:s', mktime(date('G'),date('i')-15,date('s'), date('m'), date('d'), date('Y')));
echo '<br><br><b>The Date and Time 15 minutes before this page was fetched from server is:</b><br>'.$past_time;
?>
Hope this helps anyone who will need it.
Good luck!
|
|
|
11-13-2008, 05:42 AM
|
#3
|
Member
Registered: Jan 2002
Location: Labrador, Canada
Distribution: CentOS, Debian
Posts: 182
Rep:
|
You could also use:
Code:
$past_time = date('Y-n-j G:i:s', time()-900);
|
|
|
11-13-2008, 11:19 AM
|
#4
|
Member
Registered: Jun 2002
Location: L.A.
Distribution: Fedora
Posts: 46
Original Poster
Rep:
|
Interesting
sleddog, yeap I think your way is easier.
It's all about Unix timestamp.
Interesting, very interesting.
thank you.
|
|
|
11-13-2008, 08:31 PM
|
#5
|
LQ Guru
Registered: Oct 2003
Location: Bonaire, Leeuwarden
Distribution: Debian /Jessie/Stretch/Sid, Linux Mint DE
Posts: 5,196
|
I have been writing a fairly large PHP application all about date and time, time intervals, schedules and whatnot. I can advise you to convert the time to timestamp as soon as it enters your program, do your arithmetic, and only for presentation purposes convert it back to date-time. Really, almost operations are easier done in timestamps.
You should also consider to write your entire program using UTC, system clock UTC, and at the very last moment, just before presentation convert it to UTC.
My company HQ is based in Europe UTC+1 and subject to daylight saving, I am located in UTC-4, no daylight saving. We transfer schedules regularly, and we have major schedule change in the night changing from summer to wintertime or vice versa. I can tell you, better use UTC.
jlinkels
|
|
|
All times are GMT -5. The time now is 09:56 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|