Heim >Backend-Entwicklung >PHP-Tutorial >PHP在字符串中查找指定字符串并删除的代码

PHP在字符串中查找指定字符串并删除的代码

WBOY
WBOYOriginal
2016-07-29 08:58:50820Durchsuche

PHP在字符串中查找指定字符串并删除的代码,网上搜一下是这么说的,但实际效果并没有那么好,或者说,效果根本不好

<code><span><span><?php </span><span>$a</span> = <span>"abcababa"</span>; 
<span>$count</span>=strpos(<span>$a</span>,<span>"ab"</span>); 
<span>$str</span>=substr_replace(<span>$a</span>,<span>""</span>,<span>$count</span>,<span>2</span>);
var_dump(<span>$str</span>);
<span>?></span></span></span></code>

效果如下,
PHP在字符串中查找指定字符串并删除的代码
OK,这可能是你想要的效果,但是php自带的函数就可以完美解决这个问题
代码如下

<code><span><span><?php </span>
var_dump(str_replace(<span>"ab"</span>,<span>""</span>,<span>"abcaasdfads"</span>));
<span>?></span></span></span></code>

官方解释如下
语法:
str_replace(find,replace,string,count)
参数 描述
find :必需。规定要查找的值。
replace: 必需。规定替换 find 中的值的值。
string :必需。规定被搜索的字符串。
count :可选。对替换数进行计数的变量。
其实是各有所长,第一个算是一个小算法,可以限定替换的多少个字符,而第二个是要替换全部,根据实际情况,个人自己选择。

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了PHP在字符串中查找指定字符串并删除的代码,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php安装memcache扩展Nächster Artikel:PHP中Heredoc结构形式