php中字符串与字符替换用什么函数

  • 来源:网络
  • 更新日期:2020-07-31

摘要:php中字符串与字符替换用str_replace()函数。str_replace()函数替换字符串中的一些字符(区分大小写),函数语法为:【str_replace(find,replace,string,count)】。str_replace()

php中字符串与字符替换用str_replace()函数。str_replace()函数替换字符串中的一些字符(区分大小写),函数语法为:【str_replace(find,replace,string,count)】。

str_replace() 函数替换字符串中的一些字符(区分大小写)。

(推荐教程:php图文教程)

函数语法:

str_replace(find,replace,string,count)

(视频教程推荐:php视频教程)

参数说明:

find 必需。规定要查找的值。

replace 必需。规定替换 find 中的值的值。

string 必需。规定被搜索的字符串。

count 可选。一个变量,对替换数进行计数。

代码举例:

<?php
$arr = array("blue","red","green","yellow");
print_r(str_replace("red","pink",$arr,$i));
echo "Replacements: $i";
?>