Explorar el Código

Utils : stripAccents + cleanStringToCompare

feature/export_comptable
Guillaume hace 4 años
padre
commit
9266e6b37c
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. +9
    -0
      ShopBundle/Services/Utils.php

+ 9
- 0
ShopBundle/Services/Utils.php Ver fichero

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

Cargando…
Cancelar
Guardar