I am currently using the following code to convert my strings to seo friendly urls:
function url($url) {
$url = str_replace(" ", " ", $url);
$url = str_replace(array("'", "-"), "", $url);
$url = mb_convert_case($url, MB_CASE_LOWER, "UTF-8");
$url = preg_replace("#[^a-zA-Z]+#", "-", $url);
$url = preg_replace("#(-){2,}#", "$1", $url);
$url = trim($url, "-");
return $url;
}
When I query my database I match the url against the article titles in my database, my problem is that after performing the seo friendly url function the urls do not match any article titles in my database.
The addition of dashes (not sure about the lowercase) means that they are completely different to the entries in the database.
What is my next step, should I remove the dashes before querying the database, if so how?
Or is it better practice to include the article id in my url somewhere and reference it?