Published in: PHP
This filters a string into a "friendly" string for use in URL's. It converts the string to lower case and replaces any non-alphanumeric (and accented) characters with dashes.
function slug($str) { return $str; }
You need to login to post a comment.
