I have seen this being done on the wordpress and i dont have access to word press :)

but i need to return a url string removing any non valid characters from it and converting some characters into appropriate characters :)

e.g.

1+ characters should be converted (of the following)

[space]        = [dash] (1 dash) >>> (-)
[underscore]   = [dash] (1 dash) >>> (-)
$str = 'Hello WORLD this is a bad string';
$str = convert_str_to_url($str);
//output//NOTE: caps have are lowercase :)
//hello-world-bad-string

and remove common and senseless words such as "the","a","in" etccc

at least point me on the right direction if u dnt have a gd code :)

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

What you want is the "slugged" string. Here's a list of relevant links:

Just google PHP slug for more examples.

link|improve this answer
+1 for "slugged link" soon as i read it reminded me of what im looking for lol :) – Val Jan 21 '11 at 13:15
another thing is does this have any support for multi-language? – Val Jan 21 '11 at 13:16
feedback

strtr can be used for this:

$replace = array(
   ' ' => '-',
   '_' => '-',
   'the' => '',
   ...
);

$string = strtr($string, $replace);
link|improve this answer
feedback

I would create a function with the str_replace() function. For example:

$str = 'Sentence with some words';
$str = strtolower($str);

$searchNone = array('the', 'a', 'in');
$replaceNone = '';

$str = str_replace($searchNone, $replaceNone, $str);

$search = array(chr(32)); //use ascii
$replace = '-';    

$str = str_replace($search, $replace, $str);

echo $str;

Use the following site for the special chars: http://www.asciitable.com/.

link|improve this answer
feedback

Maybe something like:

function PrettyUri($theUri)
{
    $aToBeReplace = array(' then ', ' the ', ' an '
    , ' a ', ' is ', ' are ', ' ', '_');
    $aReplacements = array(' ', ' ', ' '
    , ' ', ' ', ' ', '-', '-');
    return str_replace($aToBeReplace, $aReplacements, strtolower($theUri));
}


echo  PrettyUri('Hello WORLD this is a bad string');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.