Thursday, February 19, 2026
HomeLanguagesPHP addslashes() Function

PHP addslashes() Function

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:

  1. single quote (‘)
  2. double quote (“)
  3. backslash (\)
  4. 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
// PHP program to demonstrate the 
// working of addslashes() function 
  
// Input String
$str = addslashes('twinkle loves "coding"'); 
  
// prints the escaped string
echo($str); 
?>


Output:

twinkle loves \"coding\"

Program 2: 

php




<?php 
// PHP program to demonstrate the
// working of addslashes() function 
  
// Input String
$str = addslashes("Geek's"); 
  
// prints the escaped string
echo($str); 
?>


Output:

Geek\'s

Reference: http://php.net/manual/en/function.addslashes.php

RELATED ARTICLES

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS