php 字符串替换函数_PHP教程
字符串的替换技术可以通过以下两个常用函数实现:str_ireplace()函数和substr_replace()函数
str_ireplace()函数
使用新的子字符串替换原始字符串中被指定要替换的字符串,语法:
mixed str_ireplace(mixed search,mixed replace,mixed subject[,int&count])
参数search:必要参数,指定需要查找的字符串。
参数replace:必要参数,指定替换的值。
参数subject:必要参数,指定查找的范围。
参数count:可选参数,(带中括号的为可选参数),获取执行替换的数量。
实例:
代码如下 | 复制代码 |
$str2=”某某”; $str1=”**”; $str=”某某网站的地址是www.hzhuti.com ,某某网站主要记录一些学习php的笔记和感想以及各种软件知识”; echo str_ireplace($str2,$str1,$str); //str2查找的值,str1替换的值,str范围 ?> |
在本例中,我们将演示带有数组和 count 变量的 str_ireplace() 函数:
代码如下 | 复制代码 |
$arr = array("blue","red","green","yellow"); 输出: Array |
Replacements: 1例子 3
代码如下 | 复制代码 |
$find = array("Hello","world"); Array |
substr_replace()函数
对指定字符串中的部分字符串进行替换,语法:
string substr_replace(string str,string repl,int start,[int length])
参数str:指定要操作的原始字符串。
参数repl:必要参数,指定替换后的新字符串。
参数start:指定替换字符串开始的位置。
参数length:指定返回的字符串长度。
实例:
代码如下 | 复制代码 |
substr_replace('eggs','x',-1,-1); //eggxs
substr_replace('huevos','x',-2,-2); //huevxos
substr_replace('huevos','x',-2,0); //huevxos |
更多详细内容请查看:http://www.bKjia.c0m/phper/21/32954.htm