Skip to content

Instantly share code, notes, and snippets.

@renatocassino
Last active December 16, 2016 11:49
Show Gist options
  • Save renatocassino/3f163fc2e1b85fe80691 to your computer and use it in GitHub Desktop.
Save renatocassino/3f163fc2e1b85fe80691 to your computer and use it in GitHub Desktop.
Title to slug
<?php
function toSlug($text)
{
$text = preg_replace(
['/(à|á|ã|â)/','/(é|è|ẽ|ê)/','/(í|ì|ĩ|î)/','/(ó|ò|õ|ô)/','/(ú|ù|û)/','/ç/','/ /'],
['a','e','i','o','u','c','-'],
strtolower($text)
);
$text = preg_replace('/([^a-z0-9-])/','',$text);
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment