Added \f and \v escape sequences.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@249396 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Felipe Pena 2007-12-30 02:55:08 +00:00
parent e5253c311b
commit 4b24f5253c

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.12 $ -->
<!-- $Revision: 1.13 $ -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.addcslashes">
<refnamediv>
<refname>addcslashes</refname>
@ -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.
</para>
</listitem>
</varlistentry>