Asking Array Function

0 replies
hi i would like to ask about array

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]=>, [1]=>3)
?>
what is the array function i must apply in order to change to be this result?
#array #function

Trending Topics