用preg_replace替换字符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用preg_replace替换字符相关的知识,希望对你有一定的参考价值。
答案
最简单的方法是使用str_replace
,不需要正则表达式:
$string = '^0123456789...$';
echo str_replace(array('.', '^', '$'), array('x', '', ''), $string);
输出:
0123456789xxx
以上是关于用preg_replace替换字符的主要内容,如果未能解决你的问题,请参考以下文章
PHP 使用preg_replace替换字符串中的url,即使没有http://