Tagged Questions

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
221 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
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
5answers
347 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
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
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
2answers
119 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
152 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
633 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
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
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
114 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
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
459 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
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 ...
0
votes
4answers
566 views

PHP Date/Time and mktime

Hopefully someone can tell me whats going on with this little debugging script. <?PHP // function generates the list of times for function generateTimes($date) { $currentDate = $date; echo ...
0
votes
2answers
232 views

php mktime for epoch returns -3600, not 0

If I run the following in PHP: echo mktime(0,0,0,1,1,1970); the returned value is -3600, not 0 as I expected. The server is UK based, it's currently 21 Sep (i.e. BST summertime) (though I wouldn't ...
0
votes
6answers
348 views

why strotime returns negative value in php?

I am using strtotime to convert a date to a unixtime stamp. Year, date and day comes as different values to code and I am using the below code to produce the timestamp. $year = '1961'; $month = '2'; ...
0
votes
3answers
410 views

Opposite of mktime() in php?

How could I convert a unix timestamp , i.e. from time(), into a m-d-Y string using php?
0
votes
2answers
194 views

PHP swap month and day in timestamp

Right. I was inserting a load of data into a MySQL DB and used the following to generate the timestamp: $stamp = mktime($t[0], $t[1], $t[2], $d[2], $d[1], $d[0]); Unfortunately, the day and month ...
0
votes
2answers
940 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
2k views

convert mysql timestamp to mktime

I have the following MySQL timestamp: 2009-06-23 16:21:48 How can I convert it to a format like mktime()?
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 ...
-1
votes
2answers
39 views

ISO-8601 numeric representation of the day of the week (“N”) in PHP using the date() function always returns 3

Trying to get the ISO-8601 numeric representation of the day of the week ("N") in PHP using the date() function; however, it keeps returning "3" no matter what day I use with mktime(). <?php ...
-1
votes
1answer
262 views

how to convert time(mktime) to date(mm/dd/yyyy) in php?

ok i have a birthday form that will save as time using mktime, so when it is saved in mysql, it will show something like 634608000.. how can i convert it to mm/dd/yyyy format so that when it is ...
-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 ...