Skip to content

Instantly share code, notes, and snippets.

@andreia
Created December 21, 2019 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreia/df8a1d0a310eb061489af520c4af99b1 to your computer and use it in GitHub Desktop.
Save andreia/df8a1d0a310eb061489af520c4af99b1 to your computer and use it in GitHub Desktop.
<?php
use Symfony\Component\String\Slugger\AsciiSlugger;
$slugger = new AsciiSlugger();
$slugger->slug('Стойността трябва', 'bg'); // 'Stoinostta-tryabva'
$slugger->slug('Αυτή η τιμή πρέπει', 'el'); // 'Avti-i-timi-prepi'
$slugger->slug('该变量的值应为', 'zh'); // 'gai-bian-liang-de-zhi-ying-wei'
$slugger->slug('Wôrķšƥáçè sèťtïñğš'); // 'Workspace-settings'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment