我的codeigniter
控制器名称是asd ASd Aldsds 98Hsds
. 我需要用-
符号替换空格。为此我写了
$news_title = $this->uri->segment(1);
$news_title = strtolower($news_title);
$url = preg_replace("![^a-z0-9]+!i", "-", $news_title);
但上面的行输出$url
为:
asd%20asd%20aldsds%2098hsds
如何%20
从我的 url 中删除这些。为什么会出现这些?