Yii2:重音不敏感过滤器

时间:2018-12-12 14:24:14

标签: postgresql yii2 accent-insensitive

我想使用不区分重音的来搜索单词。对于不区分大小写的情况,我使用 ilike

$query->andFilterWhere(['ilike', 'name', $this->name]);

但是对于不区分重音的我不知道Yii2解决方案(否则我可以使用此PHP solution)。

在下一个示例中,我搜索单词“ camara”,但未找到单词“cámara”(西班牙语为摄像头):

No results found

2 个答案:

答案 0 :(得分:0)

我使用 lower_unaccent PostgreSQL函数 ILIKE PostgreSQL运算符解决了该问题:

$query->andWhere(new Expression(
    'lower_unaccent(name) ILIKE \'%\' || lower_unaccent(\'' . $this->name . '\') || \'%\''
));

答案 1 :(得分:0)

花点时间使它与@ rob006有关sql注入的注释一起工作:

private static function ExpressionLikeAccentInsensitive($col, $field){
        $bind = md5($col);
        return [
            'ilike',
            new Expression("lower(unaccent({$col}))"),
            new Expression("'%' || lower(unaccent(:q{$bind})) || '%'", [
                ":q{$bind}"=>$field
            ]),
        ];
    }

然后您这样称呼它(使用Postgres ILKE的示例):

$query->andFilterWhere(self::ExpressionLikeAccentInsensitive('"DB_COLUMN"', $this->DB_COLUMN));