Here is my array anyone can help would be appreciate. i want to check if array has any value on it or all values are empty. multidimensional array is dynamic either it can be index of 0 or more than 0.....n . but can this possible to check without for loop ?
 Array
 (
    [0] => Array
         (
             [title1] => 
             [title2] => 
             [image] => 
         )
    [1] => Array
         (
             [title1] => 
             [title2] => 
             [image] => 
         )
    [2] => Array
         (
             [title1] => SampleTitle
             [title2] => 
             [image] => 
         )
)