Converts a string into a slug.
ae
replaces ä
).¹ Some Esperanto transliterations conflict with others. You need to enable the Esperanto ruleset to use these transliterations.
You can install cocur/slugify through Composer:
$ composer require cocur/slugify:@stable
In a production environment you should replace @stable
with the version
you want to use.
Generate a slug:
use Cocur\Slugify\Slugify;
$slugify = new Slugify();
echo $slugify->slugify('Hello World!'); // hello-world
You can also change the separator used by Slugify
:
echo $slugify->slugify('Hello World!', '_'); // hello_world
The library also contains Cocur\Slugify\SlugifyInterface
. Use this interface whenever you need to type hint an
instance of Slugify
.
To add additional transliteration rules you can use the addRule()
method.
$slugify->addRule('i', 'ey');
echo $slugify->slugify('Hi'); // hey
In addition Slugify also supports rulesets. A ruleset contains a set of rules that are not part of the default rules.
Currently one ruleset exists for Esperanto since some of the transliterations conflict with those for other langauges.
The activateRuleset()
method activates a ruleset with the given name.
$slugify->activateRuleset('esperanto');
echo $slugify->slugify('serĉi manĝi'); // sercxi-mangxi
You can add rulesets by using Slugify::addRuleset()
and retrieve all rulesets with Slugify::getRuleset()
.
You can also change the regular expression that is used to replace characters with the separator.
$slugify = new Slugify('/([^a-z0-9]|-)+/');
// or
$slugify->setRegExp('/([^a-z0-9]|-)+/');
(The regular expression used in the example above is the default one.)
Feel free to ask for new rules for languages that is not already here.
All you need to do is:
'ї' => 'ji'
'Україна' => 'Ukrajina'
Slugify contains a Symfony2 bundle and service definition that allow you to use it as a service in your Symfony2 application. The code resides in the Cocur\Slugify\Bridge\Symfony
namespace and you only need to add the bundle class to your AppKernel.php
:
# app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new Cocur\Slugify\Bridge\Symfony\CocurSlugifyBundle(),
);
// ...
}
// ...
}
You can now use the cocur_slugify
service everywhere in your application, for example, in your controller:
$slug = $this->get('cocur_slugify')->slugify('Hello World!');
The bundle also provides an alias slugify
for the cocur_slugify
service:
$slug = $this->get('slugify')->slugify('Hello World!');
If you use the Symfony2 framework with Twig you can use the Twig filter slugify
in your templates after you have setup Symfony2 integrations (see above).
{{ 'Hällo Wörld'|slugify }}
If you use Twig outside of the Symfony2 framework you first need to add the extension to your environment:
use Cocur\Slugify\Bridge\Twig\SlugifyExtension;
use Cocur\Slugify\Slugify;
$twig = new Twig_Environment($loader);
$twig->addExtension(new SlugifyExtension(Slugify::create()));
To use the Twig filter with TwigBridge for Laravel, you'll need to add the Slugify extension using a closure:
// laravel/app/config/packages/rcrowe/twigbridge/config.php
'extensions' => array(
//...
function () {
return new \Cocur\Slugify\Bridge\Twig\SlugifyExtension(\Cocur\Slugify\Slugify::create());
},
),
You can find more information about registering extensions in the Twig documentation.
Slugify also provides a service provider to integrate into Silex.
$app->register(new Cocur\Slugify\Bridge\Silex\SlugifyServiceProvider());
You can use the slugify
method in your controllers:
$app->get('/', function () {
return $app['slugify']->slugify('welcome to the homepage');
});
And if you use Silex in combination with Twig you can also use it in your templates:
{{ app.slugify.slugify('welcome to the homepage') }}
Of course you can also add the Twig extension to your environment and use the slugify
filter:
$app['twig']->addExtension(new SlugifyExtension(Slugify::create()));
We don't need an additional integration to use Slugify in Mustache.php. If you want to use Slugify in Mustache, just add a helper:
use Cocur\Slugify\Slugify;
$mustache = new Mustache_Engine(array(
// ...
'helpers' => array('slugify' => function($string, $separator = '-') {
return Slugify::create()->slugify($string, $separator);
}),
));
Slugify also provides a service provider to integrate into Laravel (versions 4.1 and later).
In your Laravel project's app/config/app.php
file, add the service provider into the "providers" array:
'providers' => array(
"Cocur\Slugify\Bridge\Laravel\SlugifyServiceProvider",
)
And add the facade into the "aliases" array:
'aliases' => array(
"Slugify" => "Cocur\Slugify\Bridge\Laravel\SlugifyFacade",
)
You can then use the Slugify::slugify()
method in your controllers:
$url = Slugify::slugify('welcome to the homepage');
Slugify can be easely used in Zend Framework 2 applications. Included bridge provides a service and a view helper already registered for you.
Just enable the module in your configuration like this.
return array(
//...
'modules' => array(
'Application',
'ZfcBase',
'Cocur\Slugify\Bridge\ZF2' // <- Add this line
//...
)
//...
);
After that you can retrieve the Cocur\Slugify\Slugify
service (or the slugify
alias) and generate a slug.
/** @var \Zend\ServiceManager\ServiceManager $sm */
$slugify = $sm->get('Cocur\Slugify\Slugify');
$slug = $slugify->slugify('Hällo Wörld');
$anotherSlug = $slugify->slugify('Hällo Wörld', '_');
In your view templates use the slugify
helper to generate slugs.
<?php echo $this->slugify('Hällo Wörld') ?>
<?php echo $this->slugify('Hällo Wörld', '_') ?>
The service (which is also used in the view helper) can be customized by defining this configuration key.
return array(
'cocur_slugify' => array(
'reg_exp' => '/([^a-zA-Z0-9]|-)+/'
)
);
No new features or bugfixes, but it's about time to pump Slugify to v1.0.
protected
(by acelaya)Ď
(by michalskop)Slugify
classThis version introduces optional integrations into Symfony2, Silex and Twig. You can still use the library in any other framework. I decided to include these bridges because there exist integrations from other developers, but they use outdated versions of cocur/slugify. Including these small bridge classes in the library makes maintaining them a lot easier for me.
$separator
parameter to SlugifyInterface
Nearly completely rewritten code, removes iconv
support because the underlying library is broken. The code is now better and faster. Many thanks to Marchenko Alexandr.
The MIT License (MIT)
Copyright (c) 2012-2014 Florian Eckerstorfer
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.