From 98bac1c842978a1b02a0b9d007c6ada81dd36ee9 Mon Sep 17 00:00:00 2001 From: Jeroen van Wolffelaar Date: Thu, 28 Jun 2001 23:03:46 +0000 Subject: [PATCH] Fixed tabs to spaces. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@50317 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/functions/strings.xml b/functions/strings.xml index 38e93ac596..a9c54f2dba 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -39,16 +39,16 @@ \n, \r etc. in C-like style, characters with ASCII code lower than 32 and higher than 126 are converted to octal representation. - - + + 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. + 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. - - + are predefined escape sequences, while in C all of these are + predefined escape sequences. + + charlist like "\0..\37", which would escape all characters with ASCII code between 0 and 31.