preg_replace 替换的问题
- PHP code
<!---ecms Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> $string = <<<str …………………… ……………………str; $pattern = array('','',''); $replace = array('[img]1.jpg[/img]','[img]2.jpg[/img]','[img]3.jpg[/img]'); echo preg_replace($pattern, $replace, $string);
得到这样的结果:
- PHP code
<!---ecms Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> …………………… ……………………
为什么会多出两个尖括号 ?
要怎么才能把这个 也替换掉?
——解决方案——————–本@文来源[email protected]搞@^&代*@码网(搞代gaodaima码
$pattern = array(”,”,”);
——解决方案——————–
你用的是 preg_replace
$pattern 项中两端的被当做规则串的分界符了
用 str_replace 就可以了