最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php str_replace函数(可限制替换个数)
时间:2022-07-02 09:50:59 编辑:袖梨 来源:一聚教程网
/mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
个函数返回一个字符串或在出现问题的所有搜索给定的数组替换值替换。
如果你不喜欢需要更换的规则(如正则表达式),你应该始终使用此函数,而不是ereg_replace()或preg_replace函数()。
*/
// provides:
$bodytag = str_replace("%body%", "black", "");
// provides: hll wrld f php
$vowels = array("a", "e", "i", "o", "u", "a", "e", "i", "o", "u");
$onlyconsonants = str_replace($vowels, "", "hello world of php");
// provides: you should eat pizza, beer, and ice cream every day
$phrase = "you should eat fruits, vegetables, and fiber every day.";
$healthy = array("fruits", "vegetables", "fiber");
$yummy = array("pizza", "beer", "ice cream");
$newphrase = str_replace($healthy, $yummy, $phrase);
// provides: 2
$str = str_replace("ll", "", "good golly miss molly!", $count);
echo $count;
//利用str_replace函数指定替换次数
$array = array(
array(0,1,2)
);
function keywords( $str,$array )
{
$count =0;
foreach($array as $v){
if(strstr($str,strtolower($v[0]))!==false){
if( $count <=3 ){
$tos = strtolower($v[0]);
$str=preg_replace("/$tos/","".$v[2]."",$str,1);
$count++;
continue;
}
}
}
return $str;
}
?>
相关文章
- 光遇11.28复刻先祖是谁 光遇11月28日火先知先祖复刻介绍 11-26
- 原神暝视寻灵织卷怎么玩 11-26
- 《潜行者2:切尔诺贝利之心》纤毛虫怎么拿到 11-26
- 原神暝视寻灵织卷怎么玩 原神暝视寻灵织卷活动介绍 11-26
- 桃源深处有人家琅环画阁有什么彩蛋 琅环画阁建筑彩蛋介绍 11-26
- 金铲铲之战11.26有什么更新 11-26