Redaxscript\Db::whereLikeMany PHP Method

whereLikeMany() public method

where like with many
Since: 3.0.0
public whereLikeMany ( array $columnArray = null, array $likeArray = null ) : Db
$columnArray array array of column names
$likeArray array array of the like
return Db
    public function whereLikeMany($columnArray = null, $likeArray = null)
    {
        return $this->_addWhere('(' . implode($columnArray, ' LIKE ? OR ') . ' LIKE ? )', $likeArray);
    }