From d2f3b9569445de9a36efedcd8b4aaa5ebcdb3500 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 3 Jan 2006 16:35:10 +0000 Subject: [PATCH] -128 to -1 inclusive (bug #35873) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@204473 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/ctype/reference.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/ctype/reference.xml b/reference/ctype/reference.xml index 12c0dc4651..68cc94a66f 100644 --- a/reference/ctype/reference.xml +++ b/reference/ctype/reference.xml @@ -1,5 +1,5 @@ - + @@ -21,7 +21,7 @@ ctype.h. It means that if you pass an integer smaller than 256 it will use the ASCII value of it to see if it fits in the specified range (digits are in - 0x30-0x39). If the number is between -128 (inclusive) and 0 then 256 will + 0x30-0x39). If the number is between -128 and -1 inclusive then 256 will be added and the check will be done on that. @@ -29,7 +29,7 @@ every character in the string and will only return &true; if every character in the string matches the requested criteria. When called with an empty string - the result will always be &true;. + the result will always be &true; in PHP < 5.1 and &false; since 5.1. Passing anything else but a string or integer will