4

我在用精确给定的索引替换数组中的值时遇到问题。确切地说,我想用一个新数字替换 array[2] 中的一个字符串,但我不知道。所以请看看我的资源:

pos:0 //position of index in array 
id:498 //id of a field
new:6300 //new value to replace in an array
cost:6200-5200-4600-5600-4100 //the array

从上面,我想用“new”中的新字符串替换“cost”中的字符串索引“0”,所以预期的结果应该是:

6300-5200-4600-5600-4100

我试图到处搜索,但除了 array_search 之外什么都没有返回——这不是我想要的。请指教。

4

3 回答 3

8
$pos = 0;                            // position
$new = 6300;                         // new value
$cost = '6200-5200-4600-5600-4100';  // string
$cost = explode('-', $cost);         // make it array
$cost[$pos] = $new;                  // change the position $pos with $new
$cost = implode('-', $cost);         // return new $cost
// 6300-5200-4600-5600-4100
于 2012-09-13T08:39:28.443 回答
1

很简单:

<?php

$array = array(
    6200, 
    5200, 
    4600, 
    5600, 
    4100
);

$pos = 0;
$new = 6300;

$array[$pos] = $new;

?>
于 2012-09-13T08:41:54.020 回答
0

尝试这个:

$the_array[$pos] = $new
于 2012-09-13T08:39:12.310 回答