文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>php 数组追加(直接用加号+)

php 数组追加(直接用加号+)

时间:2011-03-02  来源:php_vfate

寻求数组追加的函数,读array_merge()函数文档之时,发现可用多个数组之间可直接用加号,来完成数组追加的想法。

详见: <?php $array1 = array(); $array2 = array(1 => "data"); $result = $array1 + $array2; ?>  Array (     [1] => data )
原文如下(大概的意思就是可以直接以加号(+)来实现数组追加,不会覆盖): If you want to completely preserve the arrays and just want to append them to each other (not overwriting the previous keys), use the + operator.
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载