I have the array $var, and I\'d like to return FALSE if one or more element in the array are empty (I mean, the string are \"\").
I think that array_filter()
If you want to have a function which checks if a item in the array is false you could write your own function which does:
The array_filter takes a array and a function, then iterates through the array and sends in each item in the specified function. If the function returns true the the item is kept in the array and if the function returns false the item is taken out of the array.
You see the difference, right?