Home  >  Article  >  Backend Development  >  How to use php stripcslashes function

How to use php stripcslashes function

藏色散人
藏色散人Original
2019-01-31 10:01:422419browse

php stripcslashes function means dequoting a string escaped using addcslashes() . The syntax is stripcslashes(string). Parameter: string is required and specifies the string to be checked.

How to use php stripcslashes function

How to use the stripcslashes function?

Function: Remove the backslashes added by the addcslashes() function.

Syntax:

stripcslashes(string)

Parameters:

string Required, specifies the string to be checked.

Description: This function can be used to clean data retrieved from the database or from HTML forms.

php stripcslashes() function usage example 1:

<?php
echo stripcslashes("Hello \World!");
?>

Output:

Hello World!

php stripcslashes() function usage example 2:

<?php
echo stripcslashes("i&#39;m \study \in \php.cn");
?>

Output:

i&#39;m study in php.cn

This article is an introduction to the PHP stripcslashes function. I hope it will be helpful to friends in need!

The above is the detailed content of How to use php stripcslashes function. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn