如何在PHP中更正我的Preg匹配功能

时间:2016-06-18 12:47:48

标签: php

我正在尝试使用preg_replace制作代码 例如,我有这个URL:

http:\/\/example.com/\fun.php

我想从网址[\]\移除[/]代码 这是我创建的代码

$string = 'http:\/\/example.com/\fun.php';
$ans = preg_replace('/[\]/','',$string);
print_r($ans); 

当我尝试任何字母时,任何字母表,它只能正常工作[\]创建问题。

1 个答案:

答案 0 :(得分:1)

您还可以使用以下代码 -

$string = 'http:\/\/example.com/\fun.php';
$ans = stripslashes($string);
print_r($ans);