I have the following array
Array
(
[0] => Array
(
[id] => 1120
)
[1] => Array
(
[id] => 1127
)
[2] => Array
(
[id] => 16101
)
[3] => Array
(
[id] => 16441
)
[4] => Array
(
[id] => 18447
)
)
i want to convert the above array into this form:
Array
(
[0] => 1120
[1] => 1127
[2] => 16101
[3] => 16441
[4] => 18447
)
but condition is this must be done without using foreach. Is this possible?