From f99a6ff0d7c27e5a69c114a8690f48e133e03b37 Mon Sep 17 00:00:00 2001 From: Gabor Hojtsy Date: Fri, 8 Feb 2002 14:15:22 +0000 Subject: [PATCH] tip -> note, where tips actually contained notes. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@69764 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/language/types.xml b/language/types.xml index 1ed6aa87f4..5e5fe2dacf 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -104,7 +104,7 @@ rather, it is decided at runtime by PHP depending on the context in which that variable is used. - + If you want to check out the type and value of a certain expression, use @@ -117,7 +117,7 @@ is_type functions. - + If you would like to force a variable to be converted to a certain type, you may either - + When you turn error_reporting to E_ALL, @@ -1290,7 +1290,7 @@ $error_descriptions[8] = "This is just an informal notice"; (put the line error_reporting(E_ALL); in your script) - + Inside a double-quoted string, an other syntax @@ -1969,13 +1969,13 @@ $bar = (float) $foo; // $bar is a float - + Instead of casting a variable to string, you can also enclose the variable in double quotes. - + Note that tabs and spaces are allowed inside the parentheses, so