vrana Mon Aug 9 10:53:55 2004 EDT
Modified files:
/phpdoc/en/reference/strings/functions addcslashes.xml
Log:
\0 is not PHP's NULL
http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/addcslashes.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/strings/functions/addcslashes.xml
diff -u phpdoc/en/reference/strings/functions/addcslashes.xml:1.6
phpdoc/en/reference/strings/functions/addcslashes.xml:1.7
--- phpdoc/en/reference/strings/functions/addcslashes.xml:1.6 Fri Aug 6 11:00:08
2004
+++ phpdoc/en/reference/strings/functions/addcslashes.xml Mon Aug 9 10:53:55
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
<refentry id="function.addcslashes">
<refnamediv>
@@ -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.
</para>