PHP function for parsing about any English textual datetime description into a Unix timestamp
-1
votes
2answers
35 views
PHP Weeknumber and start date and end date
I am writing a program code to display the week-number between two dates. I als0 want to display the dates between the week-number. I have written the following code as per the example codes from ...
0
votes
2answers
40 views
Trying to parse date using new Date(). but keep getting wrong results
I am trying to parse a date string i get from php through ajax call(which is irrelevant for now) using new Date().
however i keep getting wrong results.
My string is 2013-05-09 20:56:17
When i do
...
0
votes
2answers
34 views
Set day to “first day of month”, if it's set, set to previous month
I want to set the first day of this month (Y-M-01) if day > 1.
But if the day already is the first day of this month, it should give me "-1 month" instead.
The same should be able to happen when ...
1
vote
2answers
25 views
PHP strtotime giving wrong date with GMT conversion? [closed]
I'm reading a Last-Modified header which as a string is "Mon, 21 May 2013 09:10:30 GMT" and trying to compare that to my local time() (New Zealand). But I've just noticed that strtotime is making the ...
0
votes
1answer
32 views
PHP strtotime not being executed at all within Joomla Component
I am currently building a custom component within Joomla that takes values input from an input form and then wraps them up in order to be then sent off in a SOAP request.
One of the input form ...
0
votes
2answers
22 views
Date formatting in php, unexpected result
The Script Below:
<?php
$postedDate = "Sat May 11 2013 20:36:24 GMT-0700 (PDT)";
$date = date('Y-m-d H:i:s', strtotime($postedDate));
echo json_encode($date);
?>
Returns the value:
...
1
vote
2answers
21 views
PHP strtotime() and compare current time based on two given time
I'm facing issue in comparing current time based on two pre-specified time. Let me tell what I want:
I want to display a message if current time is between 10PM to 8AM. And my code was
$current_time ...
1
vote
2answers
96 views
Removing exactly one month from a date
It seems that you can't use strotime if you need reliable and accurate date manipulation. For example, if the month has 31 days, then it appears that strtotime simply minuses 30 days, not a whole ...
0
votes
1answer
56 views
strtotime returns 1970 when I remove a month? [closed]
According to the PHP documentation, I'm using strtotime correctly, but apparently I've managed to get something wrong.
The following code:
echo date("Y,n,j", strtotime($event["StartDate"]));
...
-4
votes
1answer
32 views
strtotime for everyday hours [closed]
I want to print all rows added on specific hour of all days.
I tried something like this strtotime('12 PM') but this return todays rows. How to print everything added between 12PM and 1 AM from today, ...
0
votes
4answers
51 views
How do i find the difference in 2 dates (in days) when using m-d-Y format?
I need something like this
$today = date("m-d-Y");
$otherdate = "05-03-2013";
//Some math here
//echo the difference between the two dates in days
I've tried using strtotime but it doesn't work ...
0
votes
2answers
40 views
Get the year of a specified month in previous 12 months?
I'm trying:
$m = 'December';
$from = date('jS M Y', strtotime("first day of previous $m"));
But it's not returning a date. In use, the month will be selected by a user from a dropdown box. However, ...
0
votes
1answer
38 views
strtotime(nth [day] of [month] [year])
<?php
$endDate = date("Y-m-d", strtotime("fourth monday april ". date("Y", strtotime("2013-04-01"))));
echo $endDate
?>
Why does this ouput 2013-04-29 when the correct answer is ...
1
vote
1answer
62 views
PHP - using date to find out daylight savings time
I want to give date() a date and have it return if that date is DST or not. Running PHP 5.4.7 via xampp on a windows 7 box. A linux box running PHP 5.2.8 returns 0 no matter what date I give it.
...
0
votes
1answer
29 views
PHP strtotime with multiple variables
This is my PHP code:
$timestamp2 = strtotime('13:30 04/12/2013');
But, I want to put the these variables in this code:
$mi = mysql_real_escape_string($_POST['mi']);
$ho = ...
0
votes
3answers
42 views
PHP Date to strtotime and back to date?
What I want to do is to convert a time string with strtotime and then back to date with the timezone that it had before.
I am using the following code, but the time I get as a result is in UTC:
...
0
votes
2answers
17 views
PHP - Formated Date to UNIX to iCal
I'm trying to format my stored dates 2013-04-23 19:00 to iCal format: 20130423T190000.
Here's how I'm trying to do it:
$start = strtotime($event["event_start"]);
$start = date('Ymd\THis',$start);
...
1
vote
1answer
38 views
Add up hh:mm written as a string together in php
I am trying to get a total time from few times written as a strings in php.
Times as strings:
00.25, 07.35, 01.10, 00.00, 01.00, 00.22
With that I should get 10hrs12mins but I get 11hrs03mins.
...
0
votes
2answers
68 views
Issues with finding SQL records for current week and last week
I've been having issues with this for about a month now. I built a copywriting management system for my company to help mitigate the strain of managing such a large project. The system pays the ...
0
votes
4answers
46 views
Difference between 2 variable RSS dates in days
I'm currently pulling a RSS feed which has these dates:
<rss>
<channel>
<lastBuildDate>Thu, 18 Apr 2013 16:14:15 GMT</lastBuildDate>
and
<item>
...
0
votes
2answers
40 views
strtotime() always returns same day of month but gets other parts of date correct
I have a part of a simple web app that takes input from a JavaScript calendar picker, sends it to the server, and then the server converts it to a human readable time and echos it back out.
My HTML ...
0
votes
0answers
27 views
manipulating cisco (UTC) format dates with php
I'm having with the the way my code is handling the format of Cisco's timestamps. Here's my code:
<?php
$lines = file('one.txt');
$year = date("Y ");
foreach ($lines as $line_num => $line) {
...
0
votes
2answers
46 views
Strtotime won't convert my date accurately
I know this is a common problem, but I can't seem to find the solution anywhere. In my last question [complicated date functions - comparing, subtracting I needed to compare timestamps to get an ...
0
votes
2answers
66 views
php date formating help Date format does not give valid date even though it matches documentation
read and have re read the documentation and truly cannot explain why $date1 comes through bad
can someone help? Greatly appreciate it
$date1 = "04-16-2013";
$date2 = "2013-04-16";
printf("date1 = ...
0
votes
3answers
49 views
Filter based on days of the week in a PHP foreach
I am getting from Facebook Graph API the last 3 months page views information from all the accounts that I am admin with the following method:
$since_date = date('Y-m-d', strtotime('-3 months'));
...
2
votes
1answer
55 views
Calculate Saturday following up to user form input date
I have made a form where users can select a date from a calander. It wil return d/m/Y, 14/05/2013.
What i need is the Saturday following up that date 14/05/2013 what will be 18/05/2013
The date ...
0
votes
1answer
94 views
PHP datetime format and string
I'm building a Joomla component for online exams and I'm struggling with format conversions.
Basically I want to get a difference between to dates (in seconds) and then convert them to minutes but no ...
2
votes
2answers
37 views
php strtotime gives strange result
Can someone explain why
echo date("Y-m-d",strtotime("Wednesday, 1 January, 2014"));
returns
2013-01-02
1
vote
1answer
60 views
Issue with date fetched using 'date' & 'strtotime' function in PHP
I am fetch day, month and year separately from date using date function in PHP.
I am passing two dates in this function, one is fromdate and other is todate.
In case of todate, function is returning ...
0
votes
2answers
40 views
PHP: strtotime and dates beyond 19 Jan 2038
Am using the strtotime function to find the difference between two given dates like this:
$diff_in_mill_seconds = strtotime($ToDate) - strtotime($FromDate);
$difference_in_years = ...
0
votes
1answer
33 views
Getting unexpected result in strtotime and date function
$selectedDate = "1365465600";
echo $selectedDate;//Output : 1365465600
echo date("Y-m-d",$selectedDate);//Output : 2013-04-09
echo strtotime(date("Y-m-d",$selectedDate));//Output : 1365445800
Why ...
0
votes
1answer
42 views
strtotime returns wrong number? [duplicate]
When I run this:
echo strtotime("January 1, 1970 00:16:00");
I get this:
-2640
How is this possible? I dont want a negative number, I want a positive number. What am I doing wrong?
2
votes
2answers
66 views
PHP : Why strtotime conversion give different values​​ and only limited to a particular date?
I have two web servers with different operating system.
SERVER 1 run in Centos 5 with LAMP Server. PHP Version 5.3.21
SERVER 2 run in openSUSE 11.3 with LAMP Server. PHP Version 5.3.5
Both PHP ...
1
vote
5answers
79 views
Php subtract two dates with different dates returns wrong result
I am trying to subtract two dates using php.
Dateone is stored in the database while datetwo is the current date.
Now, i have this strange scenario:
Dateone is 23-03-13
Date two is 02-04-13
Using ...
1
vote
4answers
102 views
Use Strtotime to format variables for hour, minute, and AM/PM
I am trying to figure out how to use strtotime with the values below. I think this should be simple but I just can't get it. I would like the output to be something like:
date("H:i:s") - which looks ...
0
votes
1answer
69 views
How to get the next month in PHP?
I'm currently using the following code to calculate the next month:
$nextMonth = date("m",strtotime("+1 months"));
If the current date is March 31 (03), this code gives me "05" which is actually 2 ...
-3
votes
2answers
60 views
PHP strtotime returning false
Below is the output from a database and I am trying to get the number of months between the start date and the date from the database. Below is my output
string(10) "12/12/2010" Date : 12/12/2010 - ...
0
votes
0answers
10 views
Trying to solve issue in Add to Cal module for Drupal
I'm trying to solve an issue in a Drupal module named "Add to Cal" - it ultimately generates an ical file that the user can download, however the date and time fields are blank.
I was looking into ...
0
votes
2answers
67 views
February and strtotime
okay?
I'm trying to hit a calculation date here, however I am not getting ..
What happens is the following:
$AtualMenos3 = date("m-d-Y", strtotime("2013-03-31 -3 month"));
$AtualMenos2 = ...
-4
votes
2answers
51 views
How can I get a PHP webpage to print every day of the year (2013)? [closed]
I am very new to PHP and I am trying to make a PHP webpage that prints out every day of the 2013 year like:
January 1, 2013
January 2, 2013
...........
...........
December 31, 2013
I have been ...
1
vote
2answers
47 views
Strtotime not working as expected
My goal is to compare the current time with the last visited time and if was 5 minutes ago then allow to visit again, else, deny! Here what I have so far
$last_activate = strtotime($last_activ); ...
2
votes
2answers
76 views
PHP Timezone Conversion / PHP Date not displaying correct timezone
The default timezone for my server and MySQL database is set to GMT. My PHP code converts dates that are displayed to the user's local timezone (Eastern in this case):
$OPENED_DATE = '2013-03-20 ...
0
votes
2answers
99 views
PHP: using strtotime to convert a MySQL UTC date for pChart use
I've RTFM, but I'm really not sure how to use the strtotime function to convert a date from UTC to unix time, because I'm not sure what variables go where. Here's the specific code:
$value = ...
1
vote
1answer
55 views
Calculate time left with this?
I wrote out a script to change user's key active status to 0 if there time is up. When starting there time I set start_time to time(); than set how many days like "60".
How could I calculate the time ...
0
votes
2answers
66 views
current week if date() function and date from mysqli
I have a table containing the following:
StartWeek | StartName |
2012-07-16 | 1 |
What I want to do. Is take the starting week, the current date, and calculate how much time has passed ...
0
votes
4answers
162 views
how to echo default date 0000-00-00 using date(“F j, Y, ”); if the date isn't updated?
in my database default value of date is set to not null 0000-00-00and i use the date format date("F j, Y, "); to print out the date.
if i echo the date using strtotime function in the following way,
...
0
votes
4answers
112 views
php strtotime does not work
I got an issue on below script, assume $exp_date is retrieved from db, I want to compare expiry date with today date to check whether membership's is still alive.
There is nothing to display but only ...
1
vote
4answers
74 views
PHP - basic strtotime from input
I would like to edit current date of my posts which exists in database like; (type = datetime)
For instance #1;
2012-12-09 22:58:15
This is the post value (which I get successfully);
31/01/1980 ...
2
votes
2answers
149 views
php string in a date format, add 12 hours
I have this string object in my php array
"2013-03-05 00:00:00+00"
I would like to add 12 hours to the entry within PHP, then save it back to string in the same format
I believe this involves ...
0
votes
3answers
52 views
strtotime not giving result
Why is the following code
$first_day = strtotime('first day of this month', '2012-06-01');
echo $first_day;
Not returning any result? The string is empty.

