Guest User

Untitled

a guest
May 24th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?
  2. function stripTitle($str) {
  3. $str = strtolower(preg_replace(array('/\s/', '/Å/', '/Ä/', '/Ö/', '/å/', '/ä/', '/ö/'), array('-', 'a', 'a', 'o', 'a', 'a', 'o'), $str));
  4. $str = ereg_replace('[^a-z0-9-]', '', $str);
  5.  
  6. return $str;
  7. }
  8. ?>
Add Comment
Please, Sign In to add comment