Stripcslashes quoted a series of Addcslashes ()
Definition and usage
The Stripcslashes () function removes the addcslashes () function that adds a backslash.
Grammar
Stripcslashes (String)
Parameters |
Description |
String |
Required Options |
Hint and description Hint: This feature can be used to clean up a string from a database. For example
<?phpecho stripcslashes ("Hello, my name is Kai Jim.");? >
Output.
Hello, my name is Kai Jim.
OK, let's take a look at the <strong>stripcslashes</strong> function definition and usage as well as an example tutorial.
Define and use the Stripslashes () function to remove the backslash increment and the addslashes () function. Grammar
Stripslashes (String)
Parameters |
Description |
String |
Must have hints and instructions |
Tip: This feature can be used to clean up data retrieved from a database or from an HTML form. For example
<?phpecho stripslashes ("Who's Kai Jim?");? >
Output.
Who ' s Kai Jim?
Techarticlestripcslashes references a series of addcslashes () functions that are added with the addcslashes () definition and the use of the stripcslashes () function to remove backslashes. Syntax Stripcslashes (string) ...