Home  >  Article  >  php教程  >  php 正则表达式替换与正则替换函数

php 正则表达式替换与正则替换函数

WBOY
WBOYOriginal
2016-06-13 10:03:191018browse

php 正则表达式替换与正则替换函数 /* 下面我们是要把指定正则出来的内空替换成别一种内容,这样做我们就会要用到正则替换函数preg_replace了,下面的实例是

php教程 正则表达式替换与正则替换函数
/*
下面我们是要把指定正则出来的内空替换成别一种内容,这样做我们就会要用到正则替换函数preg_replace了,下面的实例是


文本有下面标签

php 正则表达式替换与正则替换函数
php 正则表达式替换与正则替换函数
php 正则表达式替换与正则替换函数
php 正则表达式替换与正则替换函数
想用正则把他们替换成
有 style的 替换成php 正则表达式替换与正则替换函数
没style 的 替换成php 正则表达式替换与正则替换函数

*/

$content1 ='php 正则表达式替换与正则替换函数';
$content ='php 正则表达式替换与正则替换函数';
$a='php 正则表达式替换与正则替换函数';
echo preg_replace('/php 正则表达式替换与正则替换函数/i',$a,$content);

$content1 ='php 正则表达式替换与正则替换函数';
$b='php 正则表达式替换与正则替换函数';
echo preg_replace('/php 正则表达式替换与正则替换函数/i',$b,$content1);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn