remove slashes php

68

remove slashes php -

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

// Salida: Is your name O'reilly?
echo stripslashes($str);
?>

php remove slash from string -

echo preg_replace('/\\\\/', '', $var);

php remove slashes from json -

echo stripslashes('{\"test\":{\"test1\":{\"test1\":[{\"test2\":\"1\",\"test3\": \"foo\",\"test4\":\"bar\",\"test5\":\"test7\"}]}}}');

Comments

Submit
0 Comments