使用 array_push($var);带钥匙

发布于 2024-11-05 04:40:33 字数 184 浏览 0 评论 0原文

$dizi = array(
"tr" => "Turkey",
"uk" => "United Kingdom",
"us" => "United States"
);

我想将 "br"==>"brasil" 添加到数组末尾。

谢谢。

$dizi = array(
"tr" => "Turkey",
"uk" => "United Kingdom",
"us" => "United States"
);

i want to add "br"=>"brasil" to end of the array.

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

Spring初心 2024-11-12 04:40:33

没什么可说的:

$dizi['br'] = 'brasil';

There's nothing to it:

$dizi['br'] = 'brasil';
夜吻♂芭芘 2024-11-12 04:40:33

array_push 更接近的语法结构是:

 $dizi += array("br" => "Brasil");

注意 + =
但对于单个添加,您应该更喜欢直接数组分配(如其他答案中指出的)。

A syntax construct that's a bit closer to array_push would be:

 $dizi += array("br" => "Brasil");

Note the +=
But for a single addition you should prefer the direct array assignment (as pointed out in the other answers).

梦断已成空 2024-11-12 04:40:33

你可以这样做:

$dizi['br'] = "brasil"

you could just do:

$dizi['br'] = "brasil"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文