Tagged Questions
The mktime tag has no wiki summary.
10
votes
1answer
226 views
Linux-x64 glibc: Why does Feb 1 come before Jan 31?
When you call mktime(), Feb 1 seems to come before Jan 31. Why is this? Am I doing something wrong or is this a bug in glibc?
Here's the code:
struct tm tm;
time_t tt;
memset(&tm, 0, ...
7
votes
6answers
448 views
In PHP given a month string such as “November” how can I return 11 without using a 12 part switch statement?
I.e.
Month Returns
January 1
February 2
March 3
April 4
May 5
June 6
July 7
August 8
September 9
October 10
November 11
...
6
votes
3answers
222 views
How can I use PHP to list all the dates in a year?
I'm trying to use PHP to create a script that searches all the days between now and one year's time and lists all the dates for Fridays and Saturdays. I was trying to use PHP's date() and mktime() ...
5
votes
7answers
620 views
Finding days between 2 unix timestamps in php
Hay, i have a database holding events. There are 2 fields 'start' and 'end', these contain timestamps. When an admin enters these dates, they only have the ability to set the day,month,year. So we are ...
4
votes
1answer
81 views
mktime and tm_isdst
I saw a lot of different views so thought of asking here.
I read man mktime:
(A positive or zero value for tm_isdst causes mktime() to presume initially
that summer time (for example, Daylight ...
4
votes
1answer
62 views
Running C code with mktime inside PHP's exec
I am having a strange problem with PHP and a C script that uses the current time. My program is a little complex, but the problem narrows itself to this:
I have this C code which prints the date 1 ...
3
votes
2answers
166 views
Confusing behaviour of mktime on Linux?
I am using the mktime(struct tm*) function in Suse 10.
Now, I am noticing some strange behaviour when daylight saving time is enabled. Let's say I have enabled daylight saving time to begin on Sep ...
3
votes
2answers
269 views
is c mktime different on Windows and GNU/Linux?
the following code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <sys/time.h>
static const char * ...
3
votes
5answers
348 views
How would I fix the last day of the month errors that result with this php code?
The code below is what I'm using for a website menu which moves the link for the current month's page to the top of the link list on the change of the month.
But this fails on the 31st of some ...
2
votes
3answers
263 views
fastest way to get time_t from YYYYMMDDHHMMSS string
Is this legit? Im trying to get to a time_t as fast as possible given a string formatted like YYYYMMDDHHMMSS.
static time_t ConvertToSecSince1970(char *szYYYYMMDDHHMMSS)
{
struct tm Tm;
...
2
votes
2answers
78 views
Convert multiple dates to Unix time in PHP
Hi I have a few dates coming in random formats:
Wed, 16 Mar 2011 15:27:48 +0000
or
2011-03-16T17:42:05+0000
and I need to be able to convert them into Unix time in PHP. I assume I need to ...
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
6answers
603 views
Conversion to unix timestamp incorrect
I have a function that I wrote (if there is a good standard substitute, please let me know...)
time_t get_unix_time(string time_str) {
time_t loctime;
time(&loctime);
struct tm ...
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
1answer
17 views
valgrind complaining about __mktime - is that my fault?
For the first time (in my new dev environment) I'm seeing valgrind complain about mktime, but I'm not sure if this is a bug in the libc library, valgrind, or my code. I'll start with the error ...
1
vote
2answers
120 views
PHP Mktime error
I'm all of a sudden getting the following error on a site that I've done, which has been working fine so far:
A PHP Error was encountered
Severity: Warning
Message: mktime() [function.mktime]: It ...
1
vote
2answers
56 views
Why php timestamp behave like this? 03/November/1985
I was trying to make my own php mktime(); using my default timezone *(America/Sao_Paulo)*.
It was working ok, but I noticed that some timestamps had one hour more than it should be.
So I tracked down ...
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
3answers
460 views
How to convert week number and year into unix timestamp?
I'm trying to group together dates into a week number and year, and then I want to convert that week number back into a unix timestamp. How can I go about doing this? Thanks in advance for your ...
1
vote
4answers
157 views
php + mysql = selecting and displaying rows with different date
guys! I've never met with the selecting definite rows between dates and sorting them properly. Any help would be very useful to understand how should I organize the php + mysql script.
I have a table ...
1
vote
2answers
696 views
how to reverse mktime() function in PHP?
I am using following to convert time to integer
mktime(hour,minute,second,month,day,year)
How would I reverse this to get desired Date? Currently I do not need Minutes or Seconds so I am using ...
1
vote
2answers
416 views
Countdown timer not working correctly
I'm working on a countdown timer for my website, but can't get the script to work. The creator of the script, PHP F1, hasn't been able to help with it.
Question is: Why is the year in the target date ...
1
vote
4answers
564 views
MKTIME, PHP date/timestamp YYYY-MM-DD
I need to query MySQL for the current date (from PHP) in YYYY-MM-DD format... anyone?
1
vote
2answers
634 views
is mktime() using date() daylight saving aware?
I've read through a few questions about this here on s.o. and none seem to ask or answer the question very bluntly:
$ts_today = mktime( 0, 0, 0, date('m'), date('d'), date('Y') );
is this daylight ...
1
vote
1answer
192 views
Better way of creating a PHP future date
Is there a quicker way of creating a date such as:
echo date('Y-m-d', mktime(0, 0, 0, date("m"), date("d")+3, date("Y")));
Thanks if you can help.
1
vote
2answers
766 views
php - mktime or strtotime?
I'm trying to convert 2010-02 to February, 2010. But, I keep getting December, 1969
I've tried using mktime, strtotime, and some combination of the two, but still haven't been able to do it...
...
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
3answers
42 views
PHP - If date is less than next January
I'm to write a function that will return a specific day if it's between two dates... I've been trying to use mktime, but it keeps returning December?
Essentially, I'm trying to do this:
$now = ...
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
37 views
How to set an specific date?
I'm trying to create an date with
$date_end = mktime(0, 0, 0, date('m'), date('d')+7, date('Y'), $date_set);
The output is today + 7 days instead of the date given + 7.
0
votes
2answers
72 views
How can I subtract 2 dates from one another?
I want to subtract a date in the future from todays date, I want it to display both the day, hour and minutes until the target date.
Here is my code
<?php
...
0
votes
2answers
56 views
What does mktime overflow with the parameter?
According to standard, mktime should perform normalisation - when you want to add a minute and a half to struct tm, you add 90 seconds to tm_sec and call mktime, ignoring its return value.
What I ...
0
votes
3answers
75 views
PHP date() function returning wrong value after clock change
I have a simple function to convert a month from its number to name, i.e 10 to October
function convertToName($month) {
$month = date('F', mktime(0, 0, 0, $month));
return $month;
}
This ...
0
votes
2answers
56 views
PHP how can I get next date in this example?
I have 2 shipping zones, A & B. Orders for zone A are delivered each Monday, Wednesday & Friday, whereas zone B is on Tuesday, Thursday, Saturday. For each order, the delivery day is scheduled ...
0
votes
1answer
68 views
Problems with basic mktime() in MySQL query
Im trying a basic query to learn about timestamps in db queries. I have a db with a field 'time' which is a timestamp. I have a basic query to return records where "time" is greater than a keyed value ...
0
votes
1answer
56 views
PHP mktime giving dates 12 off
I am writing a function to convert an internal date format into a timestamp value. However, when I print the date out in YYYY-MM-DD HH format the date is 12 hours off.
The code below gives me the ...
0
votes
1answer
32 views
Selecting all for the week xx, not working properly php
Ok this is what i have:
function getFirstDayOfWeek($iYear, $iWeekNumber)
{
if ( is_null($iYear) ) $iYear = date('Y');
if ( $iWeekNumber < 10 ) $iWeekNumber = '0'.$iWeekNumber;
$iTime ...
0
votes
0answers
51 views
What can cause mktime to fail in linux?
The Linux man page says this:
"The mktime() function converts a broken-down time structure, expressed as local time, to calendar time representation. The function ignores the specified contents of ...
0
votes
3answers
49 views
Strange problem while adding years to date in a loop
$start_date = strtotime('2011-08-21');
for($i=0 ; $i < 5; $i++)
{
echo "i = $i and ";
$start_date = mktime(0, 0, 0, date("m", $start_date), date("d", $start_date), ...
0
votes
1answer
115 views
PHP/Javascript Timer and counter
Overview: I need a counter that can count up from an inserted number, that can keep counting while there are no users and that visually shows the count as it happens within a website. I'll be trying ...
0
votes
1answer
183 views
C++: mktime bug under MinGW on Windows Vista?
So I'm trying to convert dates in the format "2000-01-01" into integers representing the number of days since some arbitrary origin (e.g. 1900/01/01) so I can treat them as integer indices. To do this ...
0
votes
3answers
231 views
Php while loop to echo 24 hours from 01:00:00 to 23:00:00 using date and mktime
I need a php script which shows all the hours from 01:00:00 to 24:00:00.
So far i have done this: (this code is in a while loop)
$hour++;
$hour_after_midnight = ...
0
votes
2answers
461 views
Using is_dst in mktime() in PHP 5.3 (parameter is deprecated)
From 5.3 the is_dst parameter is deprecated in mktime. But I need two previous time in timestamp, one of them with dst and the other without that.
E.g.: first time ...
0
votes
2answers
152 views
Count down to EST Hour everyday?
How would i count down to a specific hour every day, say 12PM EST time... So that it would countdown as 1 Hour 56 Minutes until 12PM / Lunch? I'm looking for something short and simple, no need for ...
0
votes
1answer
230 views
PHP strtotime and mktime return different results
I am new to the world of coding as well as php and am confused by why the strtotime and mktime functions return different results e.g.
$endyear = date('Y', strtotime('+5 years')); //returns 2011 - ...
0
votes
2answers
246 views
How could I insert date from mktime into MySQL?
I want to insert date in format m-d into database. I used this code
$date1=date("m-d",mktime(0,0,0,$month1 ,$day1,1));
The date is inserted as 0000-00-00 in MySQL, and I don't know why.
I want ...
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
318 views
i want to date difference in week,month year in php?
I am new here and php i want to know how to calculate date difference in php.
My date is mktime() formate.
Please confirm this is current issue for me.
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
208 views
problem with mktime and timezone
I would like to display the time stamp of 00:00:00 1 Nov 2010 with the code as below
$day = mktime(0,0,0,11,1,2010);
However, it always display the wrong timestamp from what I intended.
For ...