Tagged Questions

7
votes
6answers
477 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
236 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() ...
4
votes
1answer
69 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
352 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
316 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; ...
1
vote
1answer
204 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.
0
votes
2answers
83 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
92 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
64 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
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
51 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
2answers
558 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
3answers
55 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
4answers
599 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
6answers
368 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'; ...
-1
votes
2answers
48 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
319 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
62 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 ...