CI_DB_query_builder::or_not_like PHP Method

or_not_like() public method

Generates a NOT LIKE portion of the query. Separates multiple calls with 'OR'.
public or_not_like ( mixed $field, string $match = '', string $side = 'both', boolean $escape = NULL ) : CI_DB_query_builder
$field mixed
$match string
$side string
$escape boolean
return CI_DB_query_builder
    public function or_not_like($field, $match = '', $side = 'both', $escape = NULL)
    {
        return $this->_like($field, $match, 'OR ', $side, 'NOT', $escape);
    }