📜  数组推送对象php代码示例

📅  最后修改于: 2022-03-11 14:54:36.038000             🧑  作者: Mango

代码示例3
If you're going to use array_push() to insert a "$key" => "$value" pair into an array, it can be done using the following:

    $data[$key] = $value;

It is not necessary to use array_push.