gpt4 book ai didi

php - 遍历数组更新值 PHP

转载 作者:行者123 更新时间:2023-12-01 13:59:14 26 4
gpt4 key购买 nike

假设我在 php 中有一个这样的数组

$info['name'] = 'test %value%';
$info['city'] = 'city test %value%';
$info['other'] = '%value% city test';

我想做的就是遍历这个数组并用提供的字符串替换 %value% 的所有实例,并将其保存到同一个数组中。

最好的方法是什么? :)

谢谢

最佳答案

foreach ($info as $key => $value)
$info[$key] = str_replace('%value%', 'MyValue', $value);

演示:http://ideone.com/65F3L

关于php - 遍历数组更新值 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10202129/

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