Created
December 21, 2019 02:22
-
-
Save andreia/df8a1d0a310eb061489af520c4af99b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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