From c70441db51e60d482613d39f386d2ffab88caf2c Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Fri, 12 Aug 2005 16:07:42 +0000 Subject: [PATCH] php 5.1 works with negative timestamps on all plataforms git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@193219 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/datetime/functions/strtotime.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reference/datetime/functions/strtotime.xml b/reference/datetime/functions/strtotime.xml index 2442352a3f..b8ef6f890e 100644 --- a/reference/datetime/functions/strtotime.xml +++ b/reference/datetime/functions/strtotime.xml @@ -1,5 +1,5 @@ - + @@ -152,7 +152,8 @@ if (($timestamp = strtotime($str)) === false) { 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. + some Linux distributions, and a few other operating systems. PHP 5.1.0 and + newer versions overcome this limitation though.