PHP str_replace() 函数
定义和用法
str_replace() 函数使用一个字符串替换字符串中的另一些字符。
语法:str_replace(find,replace,string,count)
参数 | 描述 |
---|---|
find | 必需。规定要查找的值。 |
replace | 必需。规定替换 find 中的值的值。 |
string | 必需。规定被搜索的字符串。 |
count | 可选。一个变量,对替换数进行计数。 |
提示和注释
注释:该函数对大小写敏感。请使用 str_ireplace() 执行对大小写不敏感的搜索。
注释:该函数是二进制安全的。
例1:
1<?php
2echo str_replace("world","John","Hello world!");
3?>
4
5其输出结果为:
6Hello John!
例2,带有数组和 count 变量的 str_replace() 函数:
1<?php
2$arr = array("blue","red","green","yellow");
3print_r(str_replace("red","pink",$arr,$i));
4echo "Replacements: $i";
5?>
6
7其输出:
8Array
9(
10[0] => blue
11[1] => pink
12[2] => green
13[3] => yellow
14)
15Replacements: 1
例3:
1<?php
2$find = array("Hello","world");
3$replace = array("B");
4$arr = array("Hello","world","!");
5print_r(str_replace($find,$replace,$arr));
6?>
7
8输出:
9Array
10(
11[0] => B
12[1] =>
13[2] => !
14)
例4,一个替换的函数
1function tihuan($ti){
2 $ti=str_replace("n","<br>","$ti");
3 $ti=str_replace(" ", " ",$ti);
4 return $ti;
5}
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/php-str_replace/2530.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.