Skip to content

Instantly share code, notes, and snippets.

@AndrewChamp
Last active December 24, 2018 06:14
Show Gist options
  • Save AndrewChamp/6055247 to your computer and use it in GitHub Desktop.
Save AndrewChamp/6055247 to your computer and use it in GitHub Desktop.
<?php
function seoName($title) {
return preg_replace('/[^a-z0-9_-]/i', '', strtolower(str_replace(' ', '-', trim($title))));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment