Kaynağa Gözat

Utils : stripAccents + cleanStringToCompare

feature/export_comptable
Guillaume 4 yıl önce
ebeveyn
işleme
9266e6b37c
1 değiştirilmiş dosya ile 9 ekleme ve 0 silme
  1. +9
    -0
      ShopBundle/Services/Utils.php

+ 9
- 0
ShopBundle/Services/Utils.php Dosyayı Görüntüle

@@ -174,6 +174,15 @@ class Utils
return $truncate;
}

function stripAccents($stripAccents)
{
return strtr($stripAccents,'àáâãäçèéêëìíîïñòóôõöùúûüýÿÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ','aaaaaceeeeiiiinooooouuuuyyAAAAACEEEEIIIINOOOOOUUUUY');
}

function cleanStringToCompare($string)
{
return $this->stripAccents(trim(strtolower($string))) ;
}

public function isBot()
{

Yükleniyor…
İptal
Kaydet