How can I create slugify in symfony2?

gastonnina picture gastonnina · Jun 23, 2013 · Viewed 16.4k times · Source

I have started to use symfony2 and I have found some functions that exists in symfony 1.4 like slugify. I need this in order to improve the furl.

Answer

Abdoul Ndiaye picture Abdoul Ndiaye · Jun 8, 2015

If you have php-intl :

/**
 * Transform (e.g. "Hello World") into a slug (e.g. "hello-world").
 *
 * @param string $string
 *
 * @return string
 */
public function slugify($string)
{
    $rule = 'NFD; [:Nonspacing Mark:] Remove; NFC';
    $transliterator = \Transliterator::create($rule);
    $string = $transliterator->transliterate($string);

    return preg_replace(
        '/[^a-z0-9]/',
        '-',
        strtolower(trim(strip_tags($string)))
    );
}

Otherwise, have a look on the doctrine extensions