From 4b24f5253c58a84df3ee90f4e3dfc165380337ef Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Sun, 30 Dec 2007 02:55:08 +0000 Subject: [PATCH] Added \f and \v escape sequences. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@249396 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/addcslashes.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/strings/functions/addcslashes.xml b/reference/strings/functions/addcslashes.xml index afdf93b49a..af76715084 100644 --- a/reference/strings/functions/addcslashes.xml +++ b/reference/strings/functions/addcslashes.xml @@ -1,5 +1,5 @@ - + addcslashes @@ -79,9 +79,9 @@ echo addcslashes("zoo['.']", 'z..A'); 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) - are predefined escape sequences, while in C all of these are - predefined escape sequences. + In PHP \0 (NULL), \r (carriage return), \n (newline), \f (form feed), + \v (vertical tab) and \t (tab) are predefined escape sequences, + while in C all of these are predefined escape sequences.