php - Completely remove separators using slugify -
i using slugify generate users slug want remove dashes, dots, spaces , every type character considered separator.
this possible changing default separator empty string, this:
echo $slugify->slugify('a strange.example_user-name', ''); will return this:
astrangeexampleusername
Comments
Post a Comment