Answers for "remove bac slash from string"

PHP
1

remove slashes php

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

// Salida: Is your name O'reilly?
echo stripslashes($str);
?>
Posted by: Guest on April-10-2022
0

php remove slash from string

echo preg_replace('/\\\\/', '', $var);
Posted by: Guest on October-18-2021

Code answers related to "remove bac slash from string"

Browse Popular Code Answers by Language