Tagged Questions
2
votes
2answers
315 views
PHP mktime() for dates pre 1900
So I am working on this system that is sorting dates by decades. I am using make times and I have everything working fine until it hits the year 1900 or below. Afer that everything returns a Dec ...
2
votes
2answers
2k views
Time of day script
I have a small script that depending on the time and day; I would like it to output different things:
<?php
$currenttime = ((date("H")+7). ":" .date("i"));
if ($currenttime >= "16:30") ...
1
vote
3answers
153 views
PHP strtotime() function that accepts a format?
strtotime() in PHP works great if you can provide it with a date format it understands and can convert, but for example you give it a UK date it fails to give the correct unix timestamp.
Is there any ...
1
vote
1answer
92 views
Problems formating a date
I am trying to write a function to format a date and time for me. I have an almost identical function which formats just a date. That function works fine. I just added some code to try and have it ...
0
votes
1answer
18 views
Get previous week date range php
I need help getting the "this week" full date range in the following format: Y-m-d
I have successfully been able to get "this month" full date range but not the "this week" full date range.
This is ...
0
votes
3answers
54 views
Fetching Results with datetime
I'm trying to fetch results between two time intervals. I've done this before with another web app I built using just Y-m-d, but now having problems with Y-m-d H:i:s. The code is below (masked ...
0
votes
2answers
390 views
Python: time.mktime returning the same value for different dates
I was working on some python scripts to calculate the time spent since an older date, and surprisingly got a negative result. I realized that the problem may be in the time.mktime function. Let's get ...
0
votes
2answers
942 views
MKTime Function Returning Wrong Time?
I'm having a bit of trouble with the mktime function. On my production server, if I execute the following:
echo '<p>' . mktime(24, 0,0, 8,29,2009) . ' - 12pm</p>';
echo '<p>' . ...
0
votes
3answers
1k views
how to get the correct timestamp with the is_dst parameter in PHP?
We are creating a unix timestamp with the mktime method giving following attributes:
print_r(mktime(0,0,0,3,1,2009));
print_r(mktime(null,null,null,3,1,2009) / 60 / 60 / 24) . "days");`
this ...
-2
votes
4answers
51 views
Get previous month date range
I need help getting the previous months full date range in the following format: Y-m-d
I have successfully been able to get "this" months full date range but not the "previous" months full date ...