Skip to content

Instantly share code, notes, and snippets.

@guimadaleno
Created September 1, 2022 15:32
Show Gist options
  • Save guimadaleno/bc55605cda5c76f0e059747d87645eb6 to your computer and use it in GitHub Desktop.
Save guimadaleno/bc55605cda5c76f0e059747d87645eb6 to your computer and use it in GitHub Desktop.
Create slug from string
<?php
/**
* Replaces spaces between string by hyphens
* @param string $str
* @return string
*/
function create_slug ($str)
{
return strtolower(preg_replace('/[^A-Za-z0-9-]+/', '-', $str));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment