Tagged Questions

0
votes
1answer
14 views

correct arguments format for strtotime

Hi, I've been using strtotime("$day-$month-$year"), in my app and it works cool... but know I want to make some date comparisons still in this format but I'm not sure about what …
0
votes
1answer
72 views

PHP: strtotime() gives me wrong timestamp

This is my code: $testtime = str_replace('.', '-', '2009.07.08 17:01'); $timestamp = strtotime($testtime); echo $timestamp . "\n"; echo $testtime . "\n"; echo date('Y-m-d H:t', $t …
1
vote
2answers
64 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 …
2
votes
3answers
127 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, 2 …
2
votes
3answers
87 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 ca …
1
vote
3answers
97 views

PHP: strtotime()… again.

How do I have to write "+3 days at 12:34:56" to make strtotime() parse it properly?
1
vote
4answers
221 views

adding 30 minutes to datetime php/mysql

I have a datetime field (endTime) in mysql. I use gmdate() to populate this endTime field. The value stored is something like 2009-09-17 04:10:48. I want to add 30 minutes to th …
3
votes
5answers
232 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 …
2
votes
3answers
325 views

PHP strtotime() outputs nothing

Here is my PHP code: echo '<br />1. '.$w_time_no; echo '<br />2. '.strtotime($w_time_no); echo '<br />3. '.date('G:i', strtotime($w_time_no)); That's what I ge …
1
vote
2answers
156 views

PHP Strtotime -1month -2month

Hi, 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", st …
2
votes
2answers
124 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 …
1
vote
2answers
140 views

remove 5 hours from the time

I'm using strtotime to create a timestamp from some ropey XML, but the timezone is incorrect. How can I remove 5 hours from the time?
0
votes
5answers
172 views

How can I offset system time to test my PHP function?

I'm writing a function that works out whether or not the time is between 9am and 5pm on a working day. It then tells you when the next working day starts (if currently out of busi …
2
votes
4answers
999 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 …
1
vote
3answers
2k 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; if …