$a = [1, 2, \'\', \'\', 5, \'\'];
$b = array_filter($a);
the output of this array will be
$b = [0=>1 , 1=>2, 4=>5];
how do i convert the