Generate URL Safe Page Name
Login or Register to Bookmark this snippet
This function trims, converts spaces to dashes, converts &'s to 'and' and removes commas. It was designed to convert page titles to url-safe names for rewrite rules, thus helping search engines.
function GenerateUrlSafe($text) {
$text = str_replace(":","",$text);
$text = str_replace(";","",$text);
$text = str_replace("<","",$text);
$text = str_replace(">","",$text);
$text = str_replace("@","",$text);
$text = str_replace("*","",$text);
$text = str_replace("---","-",$text);
$text = str_replace("--","-",$text);
return $text;
}
Added by JC on 12th November, 2007
There are no comments about this snippet.
You must be registered and logged in to post a comment.
Login here to post a comment