PHP - stripslashes 函数



语法

string stripslashes ( string $str )

定义和用法

用于去除已转义的字符串的转义符

返回值

返回未转义的字符串

参数

序号 参数和描述
1

字符串

用于搜索的字符串

示例

试试下面的例子

<?php
   echo stripcslashes("tutorials \point");
?>

这将产生以下结果:

tutorials point
php_function_reference.htm
广告