From 19231c9d0f3651d3023b3afebec7e1b6f954c71a Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 9 Aug 2004 14:53:55 +0000 Subject: [PATCH] \0 is not PHP's NULL git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@165823 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/addcslashes.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/addcslashes.xml b/reference/strings/functions/addcslashes.xml index 7b61108f77..42911d1be5 100644 --- a/reference/strings/functions/addcslashes.xml +++ b/reference/strings/functions/addcslashes.xml @@ -1,5 +1,5 @@ - + @@ -24,7 +24,7 @@ Be careful if you choose to escape characters 0, a, b, f, n, r, t and v. They will be converted to \0, \a, \b, \f, \n, \r, \t and \v. - In PHP \0 (&null;), \r (carriage return), \n (newline) and \t (tab) + In PHP \0 (NULL), \r (carriage return), \n (newline) and \t (tab) are predefined escape sequences, while in C all of these are predefined escape sequences.