testTruthy() public static method

Is array and its values truthy?
public static testTruthy ( array | Traversable $a ) : boolean
$a array | Traversable
return boolean
コード例 #1
0
ファイル: DataGrid.php プロジェクト: JakubKontra/datagrid
 /**
  * Is filter active?
  * @return boolean
  */
 public function isFilterActive()
 {
     $is_filter = ArraysHelper::testTruthy($this->filter);
     return $is_filter || $this->force_filter_active;
 }