Skip to content

Instantly share code, notes, and snippets.

@dungdt88
Last active December 16, 2015 16:49
Show Gist options
  • Save dungdt88/5465626 to your computer and use it in GitHub Desktop.
Save dungdt88/5465626 to your computer and use it in GitHub Desktop.
Convert name to slug
<?php
function name2Slug($name, $separator = '-', $maxLength = 40)
{
$url = iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', $name);
$url = trim(substr(strtolower($url), 0, $maxLength));
$url = preg_replace('/[^a-z0-9-]/', '-', $url);
$url = preg_replace('/'.$separator.'+/', '-', $url);
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment