Skip to content

Instantly share code, notes, and snippets.

@alaminfirdows
Last active August 10, 2022 17:28
Show Gist options
  • Save alaminfirdows/30a44d79b656d8a7481393ecd8f600c1 to your computer and use it in GitHub Desktop.
Save alaminfirdows/30a44d79b656d8a7481393ecd8f600c1 to your computer and use it in GitHub Desktop.
Generate UTF-8 Slug PHP
<?php
function createSlug($slug_text)
{
return utf8_encode(mb_strtolower(preg_replace('/[ ,.@#$%^&*()_\/=]+/', '-', trim($slug_text)), 'UTF-8'));
}
// echo createSlug('আমার সোনার বাংলা');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment