Home >Backend Development >PHP Tutorial >Two-dimensional array to one-dimensional array problem
How to convert Array ( [0] => 929443 [1] => 929431 )
this kind of array into array(929443,929431) ?
print_r(array(929443,929431));Array ( [0] = > 929443 [1] => 929431 )