Home >Backend Development >PHP Tutorial >Two-dimensional array to one-dimensional array problem

Two-dimensional array to one-dimensional array problem

WBOY
WBOYOriginal
2016-06-27 13:18:061002browse

How to convert Array ( [0] => 929443 [1] => 929431 )

this kind of array into array(929443,929431) ?


Reply to discussion (solution)

print_r(array(929443,929431));
Array ( [0] = > 929443 [1] => 929431 )

Array ( [0] => 929443 [1] => 929431 )

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn