正则匹配斜杠

PHP

例子1: 把'\'变成'\\'

$str = preg_replace("/\\\\/","\\\\\\",$str);

例子2: 把'/'变成'//'

$str= preg_replace("/\//","//",$str);

posted on 2013-08-26 23:45  小嘟  阅读(1037)  评论(0)    收藏  举报

导航