Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to concatenate two arrays in php? [duplicate]

Tags:

arrays

php

I have two arrays generating from two sql queries as $array_1 and $array_2. both contain [0] indexes. I want to join them with indexes [0],[1] and so on... So can any one help me on how to concatenate two arrays in php

like image 648
Shaheer Junaid Avatar asked Apr 10 '17 08:04

Shaheer Junaid


1 Answers

array_merge — Merge one or more arrays

Description

array array_merge ( array $array1 [, array $... ] )

Merges the elements of one or more arrays together so that the values of one are appended to the end of the previous one. It returns the resulting array.

If the input arrays have the same string keys, then the later value for that key will overwrite the previous one. If, however, the arrays contain numeric keys, the later value will not overwrite the original value, but will be appended.

Values in the input array with numeric keys will be renumbered with incrementing keys starting from zero in the result array.


Zipping arrays:

If you want [0] to be array1[0] and [1] to be array2[0] etc., you can zip the arrays;

Is there a php function like python's zip?

like image 193
Randy Avatar answered Oct 18 '22 09:10

Randy