PHP preg_replace使用例子

Posted 多多明明

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP preg_replace使用例子相关的知识,希望对你有一定的参考价值。

将 qwer://xxx/545/0 替换为 qwer://trading_system_xxx/0/545

$str = ‘<a href="qwer://xxx/545/0">xxx</a>‘;
$str = preg_replace(‘/qwer:\/\/xxx\/(\d+)\/(\d+)/i‘ ,‘qwer://trading_system_xxx/$2/$1/‘,$str);

  

以上是关于PHP preg_replace使用例子的主要内容,如果未能解决你的问题,请参考以下文章

PHP7 preg_replace出错及解决办法

[PHP] PHP7已经删除了preg_replace的e修饰符

php preg_replace 帮助 iframe src

mysql内部的preg_replace不能在循环php之外打印[重复]

PHP 使用PHP的preg_replace摆脱额外的空间

PHP 在 preg_replace 上崩溃