Function : arrGetsVoid

This checks if an array contains at least one empty value which may be string, array, integer or boolean. If such exists, then a true value is returned.

Syntax
  arrGetsVoid($array)
  
  $array: array to be checked
   
                  
Sample 1
  vdump(arrGetsVoid([])); //true
                  
Sample 2
  vdump(arrGetsVoid([[]])); //true
                  
Sample 3
  vdump(arrGetsVoid(['user'=> 'foo'])); //false
                  
Sample 4
  vdump(arrGetsVoid(['user'=> ''])); //true
                  
Sample 5
  vdump(arrGetsVoid(['user'=> []])); //true
                  
Sample 6
  vdump(arrGetsVoid(['user'=> false])); //true
                  
Sample 7
  vdump(arrGetsVoid(['user'=> 0])); //true
                  
Sample 8
  vdump(arrGetsVoid(['user'=> 'foo', 'name'=>''])); //true