标签:返回结果 批量 重复 用法 str 返回 pre 你好 --
<?php
$arr=[‘a‘,‘b‘];
$arr1=[‘1‘,‘c‘];
$str=‘你好a,我是b‘;
$str=str_replace($arr,$arr1,$str);
echo $str;
?>
<?php
//最好保证第一个数组,不存在重复。
$arr=[‘a‘,‘b‘,‘你好‘];
$arr1=[‘1‘,‘c‘];
$str=‘你好a,我是b‘;
$str=str_replace($arr,$arr1,$str);
echo $str;
//返回结果 ---1,,我是c
?>
标签:返回结果 批量 重复 用法 str 返回 pre 你好 --
原文地址:https://www.cnblogs.com/cn-oldboy/p/13800501.html