codeigniter 如何在php中通过索引推送值?

at0kjp5o  于 2022-12-07  发布在  PHP
关注(0)|答案(1)|浏览(106)

我有数据数组objec .在这:

Array
(
    [0] => Array
        (
            [name] => Soil 
            [method] => 
        )

    [1] => Array
        (
            [name] => 10 mm 
            [method] => 
        )
)

在这里,我接收输入索引和值。

$index = 1;
$method = 'junior'

我要根据收到的索引数据推送数据
结果

Array
    (
        [0] => Array
            (
                [name] => Soil 
                [method] => 
            )
    
        [1] => Array
            (
                [nama_barang] => 10 mm 
                [method] => junior // push by index 1
            )
    )

怎么样?谢谢

mmvthczy

mmvthczy1#

$yourArray[1]['method'] = 'junior'

在PHP中,你只需要给数组赋值。如果路径键不存在,则会自动创建。

相关问题