我正在尝试使用preg_replace
制作代码
例如,我有这个URL:
http:\/\/example.com/\fun.php
我想从网址[\]\
移除[/]
代码
这是我创建的代码
$string = 'http:\/\/example.com/\fun.php';
$ans = preg_replace('/[\]/','',$string);
print_r($ans);
当我尝试任何字母时,任何字母表,它只能正常工作[\]
创建问题。
答案 0 :(得分:1)
您还可以使用以下代码 -
$string = 'http:\/\/example.com/\fun.php';
$ans = stripslashes($string);
print_r($ans);