w3resource

PHP: addslashes() function

PHP: Quote string with slashes

The addslashes() function is used to add backslashes in front of the characters that need to be quoted. The predefined characters are single quote ('), double quote("), backslash(\) and NULL (the NULL byte).

Version:

(PHP 4 and above)

Syntax:

addslashes(string_name)

Parameter:

Name Description Required /
Optional
Type
string_name The specified string. Required String

Return values:

The escaped string.

Value Type: String.

Pictorial Presentation:

php-string-addslashes()

Example:

<?php
echo addslashes("I will n't go there.");
echo '<br>';
echo addslashes('"Thank" You');
?>

Output:

I will n\'t go there.
\"Thank\" You 

View the example in the browser

See also

PHP Function Reference

Previous: addcslashes
Next: bin2hex



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/php/function-reference/addslashes.php