标签: php
鉴于此PHP数组:
$options['systems'] = array(1, 2, 3)
如何将值4附加到$systems数组中的$options数组?
4
$systems
$options
答案 0 :(得分:1)
您可以使用array_push来推送其他内容:
array_push($options['systems'], 4);
或速记版本:
$options['systems'][] = 4;
答案 1 :(得分:0)
你可以使用php array_push函数。像这样。 array_push($options['systems'],4);
array_push($options['systems'],4);
您可以从下面的链接中阅读array_push的详细信息。array_push manual