Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Automatic clean and SEO friendly URL (slugs)

I need a function which makes "clean URL strings" like Wordpress. For example: "This is a string with frénch and gêrmän special chars + other mean stuff and I'd like to use it as an URL" Shall be transformed into this: "this-is-a-string-with-french-and-german-special-chars-other-mean-stuff-and-id-like-to-use-it-as-an-url"

Please help my laziness, it was a hard day already :-)

share|improve this question

marked as duplicate by mario, BenM, DCoder, Uwe Keim, martin clayton Oct 13 '12 at 8:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 1 down vote accepted

I'll help your laziness today by providing the hint to what you will need to work on tomorrow:

$final_string = str_replace(
    array(' ', 'ă', 'â', 'ä'),
    array('-', 'a', 'a', 'a'),
    $initial_string
);

There can be many variations of this, for example using RegEx (preg_replace) to match some groups of characters like multiple spaces/tabs/newlines (\s*) or multiple characters that are supposed to have the same replacement (ă|â|ä).

$final_string = preg_replace(
    array('/\s*/', '/ă|â|ä/'),
    array('-', 'a'),
    $initial_string
);
share|improve this answer

There's many (many) examples available, under the title SEO friendly urls.

http://www.intrepidstudios.com/blog/2009/2/10/function-to-generate-a-url-friendly-string.aspx

function generateSlug($phrase, $maxLength)
{
    $result = strtolower($phrase);

    $result = preg_replace("/[^a-z0-9\s-]/", "", $result);
    $result = trim(preg_replace("/[\s-]+/", " ", $result));
    $result = trim(substr($result, 0, $maxLength));
    $result = preg_replace("/\s/", "-", $result);

    return $result;
}

$title = "A bunch of ()/*++\'#@$&*^!%     invalid URL characters  ";

echo(generateSlug($title));

// outputs
a-bunch-of-invalid-url-characters
share|improve this answer
2  
This is a good simple approach. Its downside is that it breaks words that have diacritical characters in them. For example mauvais Noël turns into mauvais-nol which does not make sense. – Mihai Stancu Oct 8 '12 at 19:46

About the closest that you'll get with a vanialla PHP function is urlencode(), but that doesn't output exactly as per the example in your question.

For example:

$my_string = strtolower(urlencode("This is a string with frénch and gêrmän special chars + other mean stuff and I'd like to use it as an URL"));
echo $my_string;

Will produce:

this+is+a+string+with+fr%e9nch+and+g%earm%e4n+special+chars+%2b+other+mean+stuff+and+i%27d+like+to+use+it+as+an+url

Unfortunately, to match WordPress' function, you'll either have to write a function based on their algorithm, or write one from scratch.

share|improve this answer
Any reason for a downvote? – BenM Oct 8 '12 at 19:42
1  
-1 IMO this does not answer the question. URL encoding is a totally different approach - WordPress cleans the URLs of any non-URL encodable characters exactly because they will get replaced by their hexcode equivalents %27 and the like. – Mihai Stancu Oct 8 '12 at 19:43
Yes, but please see the last line of my answer. The question asked if there was a function to do this in PHP. My answer does indeed answer that... – BenM Oct 8 '12 at 19:45
1  
To which the answer is either a clean "no" or "yes - but not without a bit of work", your answer says "yes, but you won't obtain what your example asked", which is just as good as answering "sure, use base64_encode(), not exactly what you wanted, looks kinda ugly but it's clean and all the data is there". – Mihai Stancu Oct 8 '12 at 19:49
If you're going to get so nit-picky about the whole situation, shall we downvote your answer too then, since it does not indicate a clean yes or no either... ;-) – BenM Oct 8 '12 at 19:51
show 1 more comment

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