Sfoglia il codice sorgente

Utils : stripAccents + cleanStringToCompare

feature/export_comptable
Guillaume 4 anni fa
parent
commit
9266e6b37c
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. +9
    -0
      ShopBundle/Services/Utils.php

+ 9
- 0
ShopBundle/Services/Utils.php Vedi File

@@ -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()
{

Loading…
Annulla
Salva