diff --git a/language/types.xml b/language/types.xml index a4696615f0..9b1916da26 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -525,6 +525,17 @@ EXPONENT_DNUM (({LNUM}|{DNUM})[eE][+-]?{LNUM}) or gmp functions instead. + + + + Converting to float + + + For information on when and how strings are converted to floats, + see the section titled String + conversion to numbers. + + @@ -1089,6 +1100,12 @@ echo "\$foo==$foo; type is " . gettype ($foo) . "
\n"; + + Do not expect to get the code of one character by converting it + to integer (as you would do in C for example). Use the functions + ord and chr to convert + between charcodes and characters. +