2023-09-01

在PHP中的str_replace()函数


在PHP中的str_replace()函数

str_replace() 函数用于将一个字符串替换为另一个字符串。

注意 – 该函数区分大小写。

语法

str_replace(find, replace, str, count)
登录后复制

参数

  • find – 要搜索的值

  • replace – 我们要替换 $find 的字符串

  • str – 要搜索的字符串

  • count – 替换次数

返回

str_replace( ) 函数返回带有替换值的字符串或数组。

示例

以下是示例 –

实时演示

<?php
$str = "I am Amit";
$res = str_replace("Amit", "David", $str);
echo $res;
?>
登录后复制

输出

I am David
登录后复制

示例

以下是示例 –

现场演示

<?php
$myArr = array("one","two","three");
print_r(str_replace("three","four",$myArr,$c));
echo "<br>" . "Number of Replacements = $c";
?>
登录后复制

输出

Array (
   [0] => one
   [1] => two
   [2] => four
)
<br> Number of Replacements = 1
登录后复制

以上就是在PHP中的str_replace()函数的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/600862.html

发表回复

Your email address will not be published. Required fields are marked *