I have this array, I want to remove the empty values
////
Array ( [55119901] => 3 [55219902] => 3 [17110405] => 1 [] => 3)
////
I want to delete the empty key/value
////
[] =>3
////
So I will end up with this array as a reusult
////
Array ( [55119901] => 3 [55219902] => 3 [17110405] => 1)
////
What is the array function for that task, I can't figure it out.
Thanks in advance for your help