-3

I have been trying array_filter but doesn't work on my part.

enter image description here

n00b
  • 192
  • 13

1 Answers1

1

If you want is to remove empty arrays inside an array, you can use this

$array= array_filter(array_map('array_filter', $array));
Daniel Paiva
  • 121
  • 2
  • 10