From 6c1d33f09eb73bf9029c8221a4e06e3dde789dca Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Sun, 3 Dec 2006 11:41:37 +0000 Subject: [PATCH] Move the note to where it belongs #Thanks Matt! git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@224256 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/language/types.xml b/language/types.xml index afdae86c7b..50a96607e3 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -1182,6 +1182,13 @@ $third = $str{2}; is converted to a string representing the number with its digits (including the exponent part for floating point numbers). + + + The decimal point character is defined in the script's + locale (category LC_NUMERIC). + See setlocale. + + Arrays are always converted to the string "Array", so you cannot dump out the contents of an array with @@ -1262,13 +1269,6 @@ $foo = "10.0 pigs " + 1.0; // $foo is float (11) ]]> - - - The decimal point character is defined in the script's - locale (category LC_NUMERIC). - See setlocale. - - For more information on this conversion, see the Unix manual page for strtod(3).