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

Two-dimensional array to one-dimensional array problem

WBOY
Release: 2016-06-27 13:18:06
Original
998 people have browsed it

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));
Copy after login
Array ( [0] = > 929443 [1] => 929431 )

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

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template