mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
e5253c311b
commit
4b24f5253c
1 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue