Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am a PHP novice trying to understand the strtotime function. The following code:

echo strtok($oItem->added," "), " ";
echo strtotime(strtok($oItem->added," ")), " ";
echo strtotime('1 month ago'), " ";

if (strtotime(strtok($oItem->added," ")) < strtotime('1 month ago')) {
    echo "Added within a month ago";
} else {
    echo "Added more than a month ago";
}

Is producing these inexplicable results:

2012-05-14
1336946400
1335166671
Added more than a month ago

Today is the 23rd, so I'm not sure why strtotime( the 14th ) is a greater number than strtotime('1 month ago'). I must be missing something about how this works. Also, strtotime('now') is producing a large number. I don't understand that.

share|improve this question
1  
A month ago it was the 23rd of April, which is earlier than 14th of May... – Juhana May 23 '12 at 7:44
1  
Because 1336946400 is not smaller than 1335166671. Voting to close as not a real question because it's based on a wrong premise. – deceze May 23 '12 at 7:51
I don't understand... strtotime should be giving me relative to $now, unless I tell it otherwise. So shouldn't echo strtotime("now"), "\n"; produce 0? If it doesn't, how to I determine whether a date is within a certain number of days as another date? – austinstorm May 23 '12 at 15:34
1  
strtotime() gives a timestamp which is the number of seconds elapsed since January 1st, 1970. I can see where the confusion comes from; When the documentation talks about "relative to the current time", it refers not to the return value but to the first parameter ("1 month ago"), so it's 1 month ago counting from now. If you gave the second parameter, for example May 23rd 1990, it would be one month ago counting from May 23rd 1990, not from today. The return value is always a Unix timestamp, which is not relative to the current time. – Juhana May 23 '12 at 15:37

closed as too localized by Juhana, deceze, Wrikken, Gordon, bažmegakapa May 23 '12 at 8:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Because a month ago is a date from April, surely less than 14th of May.

share|improve this answer
Sorry about that, I must not be understanding strtotime. I'll rephrase the question: – austinstorm May 23 '12 at 15:27

Not the answer you're looking for? Browse other questions tagged or ask your own question.