CI_DB_query_builder::or_like PHP Method

or_like() public method

Generates a %LIKE% portion of the query. Separates multiple calls with 'OR'.
public or_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_like($field, $match = '', $side = 'both', $escape = NULL)
    {
        return $this->_like($field, $match, 'OR ', $side, '', $escape);
    }