Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP stripslashes — Un-quotes a quoted string

<?php
$str = "Is your name O'reilly?";

// Outputs: Is your name O'reilly?
echo stripslashes($str);
?>
 
PREVIOUS NEXT
Tagged: #PHP #stripslashes #quoted #string
ADD COMMENT
Topic
Name
6+9 =