hi i would like to ask about array at the first i have this array result
Asking Array Function
0
hi i would like to ask about array
at the first i have this array result
and i would like to change to this result
what is the array function i must apply in order to change to be this result?
at the first i have this array result
PHP Code:
<?php
Array
(
[0] => Array
(
[id] => 2
)
[1] => Array
(
[id] => 3
)
[2] =>
)
?> and i would like to change to this result
PHP Code:
<?php
array([0]=>2 , [1]=>3)
?> Next Topics on Trending Feed
-
0