Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save madeinnordeste/869be634977884f954b7 to your computer and use it in GitHub Desktop.
Save madeinnordeste/869be634977884f954b7 to your computer and use it in GitHub Desktop.
PHP - Convert string to slug
<?php
function slug($str){
$str = strtolower(trim($str));
$str = preg_replace('/[^a-z0-9-]/', '-', $str);
$str = preg_replace('/-+/', "-", $str);
return $str;
}
echo slug('This is my string ;) ');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment