Created
June 11, 2022 08:15
-
-
Save ahmadthedev/30f6d183790b56b48bdccf30aaeb5c54 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 | |
// Code from (https://www.codegrepper.com/code-examples/php/frameworks/yii/slug+to+string+php) | |
function slugify($text, string $divider = '-') { | |
// replace non letter or digits by divider | |
$text = preg_replace('~[^\pL\d]+~u', $divider, $text); | |
// transliterate | |
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); | |
// remove unwanted characters | |
$text = preg_replace('~[^-\w]+~', '', $text); | |
// trim | |
$text = trim($text, $divider); | |
// remove duplicate divider | |
$text = preg_replace('~-+~', $divider, $text); | |
// lowercase | |
$text = strtolower($text); | |
if (empty($text)) { | |
return 'n-a'; | |
} | |
return $text; | |
} | |
echo slugify('Hello World'); //hello-world | |
echo slugify('Hello World', '_'); //hello_world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment