Skip to content

Instantly share code, notes, and snippets.

@micalexander
Last active November 16, 2016 03:42
Show Gist options
  • Select an option

  • Save micalexander/77e0aa503619d91b0a01 to your computer and use it in GitHub Desktop.

Select an option

Save micalexander/77e0aa503619d91b0a01 to your computer and use it in GitHub Desktop.
Turn a string of characters into a lowercased hyphenated string

Stringify

Turn a string of characters into a lowercased hyphenated string

<?php
/**
* Turn a string of characters into a lowercased hyphenated string
* @param string $text The string of text to hyphenate
* @return string The hyphenated string of text
* @author michael alexander
*/
function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\\pL\d]+~u', '-', $text);
// trim
$text = trim($text, '-');
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// lowercase
$text = strtolower($text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
if (empty($text))
{
return 'n-a';
}
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment