mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
-128 to -1 inclusive (bug #35873)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@204473 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
daf90bf13c
commit
d2f3b95694
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<!-- $Revision: 1.14 $ -->
|
||||
<!-- Purpose: basic.vartype -->
|
||||
<!-- Membership: bundled -->
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
|||
<filename>ctype.h</filename>.
|
||||
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.
|
||||
</para>
|
||||
<para>
|
||||
|
@ -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.
|
||||
</para>
|
||||
<para>
|
||||
Passing anything else but a string or integer will
|
||||
|
|
Loading…
Reference in a new issue