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()
array_filter()
if (array_search('', $var)!==false) return FALSE;