Tagged Questions
PHP function for parsing about any English textual datetime description into a Unix timestamp
9
votes
3answers
179 views
PHP strotime +1 month behaviour
I know about the unwanted behaviour of PHP's function
strtotime
for example when adding a month (+1 month) to dates like: 31.01.2011 -> 03.03.2011
I know it's not officially a PHP bug, and ...
9
votes
5answers
2k views
PHP's strtotime() in Java
strtotime() in PHP can do the following transformations:
Inputs:
strtotime(’2004-02-12T15:19:21+00:00′);
strtotime(’Thu, 21 Dec 2000 16:01:07 +0200′);
strtotime(’Monday, January 1st’);
...
8
votes
1answer
155 views
Is there an R equivalent of strtotime
PHP has this wonderful function, strtotime, that takes any string containing just about any date format and returns a time (secs-since-1970). It is more future-proof than strptime, for instance, ...
8
votes
6answers
617 views
strtotime() considered harmful?
It seems like a lot of people struggle with date/time issues in PHP, and inevitably, many of the accepted answers tend to be "Use strtotime in this way."
Is this really the best way to direct people ...
8
votes
7answers
10k views
php check for a valid date, weird date conversions
Is there a way to check to see if a date/time is valid you would think these would be easy to check:
$date = '0000-00-00';
$time = '00:00:00';
$dateTime = $date . ' ' . $time;
...
7
votes
6answers
548 views
How to get previous month and year relative to today, using strtotime and date?
I need to get previous month and year, relative to current date.
However, see following example.
// Today is 2011-03-30
echo date('Y-m-d', strtotime('last month'));
// Output:
2011-03-02
This ...
7
votes
4answers
9k views
Simplest way to increment a date in PHP?
Say I have a string coming in, "2007-02-28", what's the simplest code I could write to turn that into "2007-03-01"? Right now I'm just using strtotime(), then adding 24*60*60, then using date(), but ...
6
votes
2answers
155 views
Bug with strtotime PHP
echo date("m", strtotime("january"));
Returns 01 as expected
echo date("m", strtotime("february"));
But this returns 03
Anyone else encountered this problem?
PHP Version 5.1.6
6
votes
1answer
453 views
Working days (Mon-Fri) in PHP
Is there a way to use strtotime to add working days (Monday to Friday) to a date? Or some other method? What I want to do is:
date ( 'Y-m-j' , strtotime ( '+3 working days' ) )
6
votes
5answers
1k views
How to make strtotime parse dates in Australian (i.e. UK) format: dd/mm/yyyy?
I can't beleive I've never come across this one before.
Basically, I'm parsing the text in human-created text documents and one of the fields I need to parse is a date and time. Because I'm in ...
5
votes
7answers
628 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
4answers
108 views
php: strtotime(“12/31/2004 +6 month”)); not returning the last day of June
I expected this functional to return 6/30/2005 instead of 7/1/2005.
print date("m/d/Y", strtotime("12/31/2004 +6 month"));
Similarly, print date("m/d/Y", strtotime("1/31/2011 +1 month")) returns ...
4
votes
4answers
120 views
PHP strtotime() function
I have a file with the following lines. I want to identify lines which have timestamps less than a week from now(starting from aug 22 for this example).
log3.txt
28-08-2011 10:29:25 A string
...
4
votes
2answers
135 views
PHP strtotime returning false for dates less than 1900
I know this question is very popular
Asked here
PHP: strtotime is returning false for a future date?
and here How can I work with dates before 1900 in PHP?
Could you please confirm my choices:
...
4
votes
2answers
100 views
strtotime PHP, display date/time
I have an XML file with a "Time" attribute. I am calling this XML into my PHP and giving it the variable $game_time.
An example value for the attribute is "10:30 PM"...
Since it is coming from XML, ...
4
votes
3answers
376 views
PHP strtotime giving the wrong date for certain months
the following code.
strtotime("first saturday", strtotime("+2 month"));
Is working correctly but with the months of April +2 month, October + 8 month, and December + 10 month is giving the second ...
4
votes
3answers
222 views
Issue with php strtotime function when using ordinal values
I sometime get unexpected results when using ordinal values with strtotime. For example, why does
date("M j", strtotime("second Tuesday February 2011"))
result in "Feb 15" (which is actually the ...
4
votes
3answers
1k views
php strtotime “last monday” if today is monday?
I want to use strtotime("last Monday").
The thing is, if today IS MONDAY, what does it return?
It seems to be returning the date for the monday of last week. How can I make it return today's date in ...
4
votes
4answers
390 views
How to calculate the the interval between 2 unix timestamps in php WITHOUT dividing by 86400 (60*60*24)
I have 2 unix timestamps, Im in AsiaPacific/Auckland timezone (GMT+12, DaylightSavings = GMT+13)
I want to calculate the number of days interval between 2 timestamps, where one is inside daylight ...
4
votes
2answers
47 views
PHP: parsing a date of any format (especially: 2008-10-20, 2008/10/20, 2008.10.20, Nov. 20/08)
strtotime("25/03/1957") returns false. what will satisfy all of these date formats? i can't imagine how long it would take to actually make my own, so i hope there's already one out there you know of.
...
4
votes
3answers
151 views
PHP date problem
I have web service in PHP which gets dateTime object (from asp) . I want to parse this date in my custom format . The date originally is in format "2010-07-05T00:00:00+02:00" . When I'm trying this:
...
4
votes
1answer
3k views
Drupal CCK Date: how to set datetime field's default value to a fix date?
I have a CCK datetime field and would like to set its default value to 31 May 2011.
When I go to the configuration of the field I can set the default value to Now, Blank or Relative.
Relative is to ...
4
votes
4answers
753 views
PHP strtotime() looks like it is expecting a Euro format
I've been using PHP's strtotime() method to accept a date field on a form. I love how powerful it is, in how it will accept "Tomorrow", "Next Thursday", or (supposedly) any date representation and ...
4
votes
3answers
154 views
strtotime for Emacs Lisp
Is there any functionality in Emacs Lisp that behaves similar to PHP's strtotime function? (Actually AFAIK it implements relative items of the GNU date input formats.)
In PHP I can write
echo ...
4
votes
3answers
1k views
PHP Strtotime -1month -2month
This was working fine yesterday with no changes to the code.
echo date("M", strtotime("-3 month", time()) );
echo date("M", strtotime("-2 month", time()) );
echo date("M", strtotime("-1 month", ...
3
votes
2answers
51 views
Month name to month number - 03 for Feb?
I am trying to convert string month name to month number,
but why do I get '03' in the result for 'Feb' in,
strtolower(date('m', strtotime('Feb')));
I tested with other month names and they seem ...
3
votes
2answers
67 views
PHP date() and strtotime() return wrong months on 31st
I'm using date()and strtotime() functions to display the next 3 months in a dropdown list.
PHP Code:
echo date("m/Y",strtotime("+0 months"));
echo date("m/Y",strtotime("+1 months"));
echo ...
3
votes
3answers
68 views
how is the best method create simply calendar?
how is the best method create simply calendar?
i have for example in db:
id | date(unique)| text
1 | 2011-02-02 | aaa
2 | 2011-03-03 | bbb
3 | 2011-03-04 | ccc
..
10 | 2011-03-11 | dfg
for ...
3
votes
3answers
81 views
32 hours ago excluding weekends with php
So I have a script that does multiple checks for 32, 48 and 72 hours ago.
Basically I check my database for entries that are at least x hours old.
Now this works fine like this:
$date = date('Y-m-d ...
3
votes
1answer
121 views
PHP strtotime() “first monday february” returns second monday if february 1st is a monday
I'm working on a PHP function which calculates holidays:
function holidays($country = 1, $timespan_start = 0, $timespan_end = 0)
The holidays are returned as timestamps in an array.
Since I have ...
3
votes
4answers
94 views
strtotime php function not behaving as expected
I'm trying to write a bit of php to determine the date (Y-m-d format) for the next occurrence of a given weekday.
date('Y-m-d', strtotime('next monday'));
is returning
2011-08-29
instead of
...
3
votes
5answers
161 views
Accurate method to add months in PHP 5.1?
Yesterday I ran into an issue with PHP's strtotime not properly adding a month. On '2011-05-31' I ran:
date('Y-m-d',strtotime( '+1 month', strtotime('now')));
Which returns '2011-07-01' when I am ...
3
votes
2answers
464 views
php strtotime not working
so I converted this string to timestamp using strtotime:
strtotime("1 Nov, 2001");
which results into the timestamp 1320177660
but then when I tried converted 1320177660 into a normal date format ...
3
votes
2answers
320 views
Add 10 Minutes to 7:30am PHP
I'm sure this question has been asked before, but I'm too frustrated to find it. All I want to do is add X amount of minutes to X o'clock.
So, in my case for example I have a time 7:30am that I want ...
3
votes
2answers
91 views
PHP: DATETIME help
I know there's ample information about datetimes on the internet but I'm having trouble using what I've been seeing.
I have a calander control hooked up to a text box. It takes it in the form ...
3
votes
3answers
1k views
PHP strtotime() function wrong by 1 hour?
I am converting dates and times into timestamps using PHP before they are inserted into my MySQL database.
My problem is that when i use PHP's strtotime function the output timestamp is -1 hour ...
3
votes
1answer
127 views
How to display after 4 week date from now?I want to pass an argument
echo date( "F jS, Y" , strtotime("now +3 weeks") );
It gives the result as July 2nd, 2010 .
Fine.Now I want to pass the argument like this.
The original print_r($originalamount)
give the result ...
3
votes
4answers
796 views
How to convert date and time into unix timestamp in php?
echo $_POST['time']."<br/>";
echo $_POST['day']."<br/>";
echo $_POST['year']."<br/>";
echo $_POST['month']."<br/>";
I have value store like this now I want to create a ...
3
votes
2answers
110 views
Trying to find the previous six days given any date
I'm using strtotime just fine for finding the previous week and next week's entries in my database, but what I can't seem to find is how to find the previous six days if the user selects a past date.
...
3
votes
4answers
431 views
How to use the mysql “LIKE” syntax with a timestamp?
I want to allow my users to search the database for a row that was submitted on a certain day. The date is entered into the field in the database using the date() function which is great, but when i ...
3
votes
2answers
254 views
Coldfusion equiv of PHP strtotime()?
I'm relatively new to CF / Flex3 and I've been tasked with making mock applications in order to get my knowledge of the 2 languages up.
I'm creating an application where I require data back 1 week ...
3
votes
3answers
2k views
How to I accurately get current UTC time via strtotime?
In PHP, how do I get the current time, in UTC, without hard coding knowledge of where my hosting provider is?
For example, I tried the following:
time() + strtotime('January 1, ...
3
votes
2answers
255 views
Backward-counting day display in php
I am a complete newbie in PHP. I would like to show the number of days missing for a specific date. In other words, I want to display something like:
"X days to go for the great event"
using PHP ...
2
votes
2answers
30 views
How do I make dateslegit/safe before passing it to strtotime()?
Here is what I have now.
$date = mysqli_real_escape_string($dbc, trim(date('Y-m-d',strtotime
($_POST['date']))));
I was told that I need to make sure that the $date is safe/legit before ...
2
votes
6answers
54 views
Convert MMDDYYYY to date for PHP
I have a string with a date which is in this format MMDDYYYY (ie. 01132012, 01142012 etc.)
I need to do something on a page, if that string is 14 days or less from the current date.
ie. Today is ...
2
votes
3answers
91 views
strtotime bug on thursday?
First of all, what I am trying to do is get the dates of the next 7 days after a specific date. For this first set, I want my results to be 11/1/11 to 11/7/11. Here is the code, and the result that ...
2
votes
2answers
147 views
php - add two hours to date variable
I want to add 3 minutes to a date/time variable I have, but I'm not sure how to do this.
I made the variable from a string like this: (which is in the RFC 2822 date format btw)
$date = ...
2
votes
3answers
163 views
PHP strtotime returns a 1970 date when date column is null
I want to display $row->depositdate in dd-mm-yyyy format.
If the date column in database is null the date displayed is : 01-01-1970
echo "<td align=center>".date('d-m-Y', ...
2
votes
1answer
79 views
New way of defining timestamp in PHP 5.3?
Is there a new approach in PHP 5.3 to define timestamp?
this strtotime('0000-00-00');
will return 0 date(01/01/1970) in PHP prior 5.3 and -62169984000 in PHP 5.3. And a date like 30/11/-0001 !!
But ...
2
votes
1answer
62 views
How can I get rounded minutes directly in strtotime
I want to get the next rounded hour (10:00:00 instead of 10:25:01) by calling the strtotime function. The output from strtotime should translate directly to the rounded hour.
At the moment if I do
...