2
\$\begingroup\$

I think this is the simplest way to slugify urls. You have any contra-indication?

function url_clean($str){
 $str = iconv('utf-8', 'us-ascii//TRANSLIT', $str);
 $clean_str = preg_replace(array('/\'|\"/','/ /'),array('','-'),$str);
 return $clean_str;
}
asked Feb 11, 2013 at 13:23
\$\endgroup\$

2 Answers 2

2
\$\begingroup\$

An alternative, simpler way to code your solution is to use the strtr function which "translates characters". Also I made sure to escape the special characters in the regex.

function url_clean($str) {
 $accent = array(' űáéúőóüöíŰÁÉÚŐÓÜÖÍ');
 $clean = array('-uaeuoouoiUAEUOOUOI');
 $str = strtr($str, $accent, $clean);
 return preg_replace('/[^A-Za-z0-9\-\.]/', '', $str);
}
answered Feb 18, 2013 at 10:15
\$\endgroup\$
0
1
\$\begingroup\$

There are two issues with your otherwise elegant approach:

  1. iconv silently cuts the string if a disallowed UTF-8 character is present. The solution would be to add //IGNORE to the iconv() call but 1/ a bug in glibc seems to prevent this 2/ PHP developers don't seem to want to implement a work-around. An option is to remove invalid characters yourself:

    ini_set('mbstring.substitute_character', "none"); 
    $text= mb_convert_encoding($text, 'UTF-8', 'UTF-8'); 
    
  2. You're not removing all characters that are present in ASCII but disallowed in a URL: see this StackOverflow answer.

answered Feb 11, 2013 at 14:05
\$\endgroup\$

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.