• PHP Video Tutorials

PHP - Function Stripslashes



Syntax

string stripslashes ( string $str )

Definition and Usage

It is used to un-quoted a quoted string

Return Values

It returns the unescaped string

Parameters

Sr.No Parameters & Description
1

string

It is used to the string to search

Example

Try out the following example

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

This will produce following result −

tutorials point
php_function_reference.htm
Advertisements