Slugify String

Convert a string to a URL-friendly slug.

Code

General
trim(preg_replace('/[^a-z0-9]+/', '-', strtolower($str)), '-');

Parameters

The string to slugify

Server

More PHP Snippets