Skip to content

Instantly share code, notes, and snippets.

@mikeoberdick
Created March 7, 2025 22:11
Show Gist options
  • Save mikeoberdick/9a59df9ce0ffb909e91f282ece11dd60 to your computer and use it in GitHub Desktop.
Save mikeoberdick/9a59df9ce0ffb909e91f282ece11dd60 to your computer and use it in GitHub Desktop.
Create a slug using a function to use within a php template
//Create a slug
function createSlug($text) {
// Convert the string to lowercase
$lowercaseText = strtolower($text);
// Replace spaces with hyphens
$slug = preg_replace('/[^a-zA-Z0-9]/', '-', $lowercaseText);
return $slug;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment