"tom", "age"=>20, "height"=>-6ren">
gpt4 book ai didi

PHP 如何添加到数组末尾?

转载 作者:IT王子 更新时间:2023-10-29 00:01:56 26 4
gpt4 key购买 nike

我在添加到数组末尾时遇到了困难。不知道该怎么做。请帮忙。

$person = array();
$person = array("name"=>"tom", "age"=>20, "height"=>180);

如何添加到数组的末尾?我想在现有数组的末尾添加“weight”=>120。

谢谢

最佳答案

因为这是一个关联数组,只需执行:

$person['weight']=120;

对于常规的数字索引数组,您可以使用 array_push()$person []= "new value";

关于PHP 如何添加到数组末尾?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6797641/

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