search
HomeBackend DevelopmentPHP TutorialPHP字符串替换次数控制方法

最近做的一个项目里面涉及到批量替换关键字的问题,仅替换而言没什么可说的,但这里需要的是每个关键字仅需要替换一次就可以了。查阅了php相关函数文档,发现php本身是没有函数实现这个功能的,所以不得不自己解决了。经过一番折腾总结了几种可行方法,小记一下!

(1)使用 preg_replace 函数实现这个功能,因为 preg_replace 这个函数本身是可以实现控制替换次数的,所以一开始就想到他了,具体实现方法如下://可以实现替换次数的控制,不仅限于只替换一次,比如$limit为2的时候表示一个词出现很多次的时候仅替换2次,-1表示全部替换。

$search 和 $replace 都可以是字符串或者数组,但必须对应

function str_replace_limit($search,$replace,$content,$limit=-1){<br />    if(is_array($search)){<br />        foreach ($search as $k=>$v){<br />            $search[$k]='`'.preg_quote($search[$k],'`').'`';<br />        }<br />    }else{<br />        $search='`'.preg_quote($search,'`').'`';<br />    }<br />	//把图片描述去掉<br />	$content=preg_replace("/alt=([^ >]+)/is",'',$content);<br />    return preg_replace($search,$replace,$content,$limit);<br /><p>}

(2)使用 substr_replace 函数来实现,不过这里仅能实现仅一次替换

//首先找到关键字所在位置,然后使用 substr_replace(系统函数)进行替换操作

function str_replace_once($search,$replace,$content){<br />	//把图片描述去掉<br />	$content=preg_replace("/alt=([^ >]+)/is",'',$content);<br />    $pos=strpos($content,$search);<br />    if($pos===false){<br />        return $haystack;<br />    }<br />    return substr_replace($content,$replace,$pos,strlen($search));<br />}


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
php怎么将空格转换成nbsp符php怎么将空格转换成nbsp符Apr 25, 2022 pm 08:30 PM

方法:1、用str_replace(),语法“str_replace(" ","&nbsp;",$str)”;2、用preg_replace()配合正则表达式,语法“preg_replace('/\s+/',"&nbsp;",$str)”。

php怎么将数值后面的零去掉php怎么将数值后面的零去掉May 30, 2022 pm 07:36 PM

两种去除方法:1、使用rtrim()函数,语法“rtrim(数值,"0")”,可去除数值后面连续的零。2、用substr_replace(),语法“substr_replace(数值,'', -位置值)”,可从指定位置开始将零替换为空字符。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么将小数点转为百分比php怎么将小数点转为百分比Apr 28, 2022 pm 08:51 PM

php将小数点转为百分比的方法:1、利用“*”运算符将小数乘以100,语法“小数 * 100”,可将小数转为百分值;2、使用字符串拼接符“.”将百分值和“%”符拼接在一起,形成百分比字符串即可,语法“百分值."%"”。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

怎么将多个php数组转成一个json数据怎么将多个php数组转成一个json数据May 26, 2022 pm 04:18 PM

转换方法:1、使用“array_merge_recursive(数组1,数组2,数组3...)”语句将多个数组合并为一个数组;2、使用json_encode()将合并后的数组转为json数据,语法“json_encode(合并后的数组)”。

php怎么去掉指定字符之后的内容php怎么去掉指定字符之后的内容May 27, 2022 pm 06:12 PM

两种方法:1、用“substr_replace($str,"",strpos($str,"指定字符")+1)”语句,将指定字符位置后的内容替换为空字符;2、用“substr($str,0,strpos($str,"指定字符")+1)”语句。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools