The addslashes() function is an inbuilt function in PHP and it returns a string with backslashes in front of predefined characters. It does not take any specified characters in the parameter.
The predefined characters are:
- single quote (‘)
- double quote (“)
- backslash (\)
- NULL
Note: The addslashes() function is different from addcslashes() function accepts specified characters before which we want to add slashes but the addslashes() function does not accepts any character in parameters, rather it adds slashes before some specified characters.
Syntax:
addslashes($string)
Parameters: The addslashes() function accepts only one parameter $string which specifies the input string which is needed to be escaped. We can also say that this parameter specifies a string in which we want to add backslashes before the pre-defined characters.
Return value: It returns the escaped string with backslashes in front of the pre-defined characters which is passed in the parameter.
Examples:
Input : $string = "Geek's"
Output : Geek\'s
Input : $string='twinkle loves "coding"'
Output : twinkle loves \"coding\"
Below programs illustrate the addslashes() function in PHP:
Program 1:
php
<?php
$str = addslashes ( 'twinkle loves "coding"' );
echo ( $str );
?>
|
Output:
twinkle loves \"coding\"
Program 2:
php
<?php
$str = addslashes ( "Geek's" );
echo ( $str );
?>
|
Output:
Geek\'s
Reference: http://php.net/manual/en/function.addslashes.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
21 Jun, 2023
Like Article
Save Article