From 3beae10cf998bdc741d03d0e01c1ffcb770a25b3 Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Wed, 19 Nov 2003 13:00:31 +0000 Subject: [PATCH] fixing #25598 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@144591 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/datetime/functions/strtotime.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reference/datetime/functions/strtotime.xml b/reference/datetime/functions/strtotime.xml index 099e4638f7..192e623ef7 100644 --- a/reference/datetime/functions/strtotime.xml +++ b/reference/datetime/functions/strtotime.xml @@ -1,5 +1,5 @@ - + @@ -70,6 +70,10 @@ if (($timestamp = strtotime($str)) === -1) { 1901 20:45:54 GMT to Tue, 19 Jan 2038 03:14:07 GMT. (These are the dates that correspond to the minimum and maximum values for a 32-bit signed integer.) + Additionally, not all platforms support negative timestamps, therefore + your date range may be limited to no earlier than the unix epoch. This + means that e.g. dates prior to Jan 1, 1970 will not work on Windows, + some Linux distributions, and a few other operating systems.