The following script can be used :
$url = strtolower(str_replace(array(' ', ' '), '-', preg_replace('/[^a-zA-Z0-9 s]/', '', trim($string))));
Notes :Those script using php
Replace '-' with any character as you wish
Those script convert all cases to lower

No comments:
Post a Comment