diff --git a/reference/strings/functions/addcslashes.xml b/reference/strings/functions/addcslashes.xml index 8396eda900..3362883c70 100644 --- a/reference/strings/functions/addcslashes.xml +++ b/reference/strings/functions/addcslashes.xml @@ -1,5 +1,5 @@ - + @@ -80,6 +80,7 @@ echo addcslashes("zoo['.']", 'z..A'); See also stripcslashes, stripslashes, + addslashes, htmlspecialchars, and quotemeta. diff --git a/reference/strings/functions/addslashes.xml b/reference/strings/functions/addslashes.xml index 737b5d4c60..5b426b7f4f 100644 --- a/reference/strings/functions/addslashes.xml +++ b/reference/strings/functions/addslashes.xml @@ -1,5 +1,5 @@ - + @@ -59,6 +59,8 @@ echo addslashes($str); See also stripslashes, + stripcslashes, + addcslashes, htmlspecialchars, quotemeta, and get_magic_quotes_gpc. diff --git a/reference/strings/functions/quotemeta.xml b/reference/strings/functions/quotemeta.xml index 3b92ede6b8..40294e41e6 100644 --- a/reference/strings/functions/quotemeta.xml +++ b/reference/strings/functions/quotemeta.xml @@ -1,5 +1,5 @@ - + @@ -22,10 +22,12 @@ See also addslashes, + addcslashes, htmlentities, htmlspecialchars, - nl2br, and - stripslashes. + nl2br, + stripslashes, and + stripcslashes.