gpt4 book ai didi

php如何制作一个if str_replace?

转载 作者:可可西里 更新时间:2023-11-01 13:02:55 28 4
gpt4 key购买 nike

$str 是 foreach 中的某个值。

$str = str_replace('_name_','_title_',$str);

如何制作if str_replace

我想做的事情 if have a str_replace then echo $str, else not, jump the current foreach then to next.谢谢。

最佳答案

str_replace()还有第四个参数设置为执行的替换次数。如果没有被替换,它被设置为 0。在那里放置一个引用变量,然后在你的 if 语句中检查它:

foreach ($str_array as $str) {
$str = str_replace('_name_', '_title_', $str, $count);

if ($count > 0) {
echo $str;
}
}

关于php如何制作一个if str_replace?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6245335/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com