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.
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:34strtotime()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