dongtang4019 2014-10-06 14:05
浏览 35
已采纳

Codeigniter URL Helper的正则表达式帮助

In CI url_title() function, it removes dots from string whereas I want to replace with $seperator. Here is url_title()'s regex replacement array.

$trans = array(
  '&.+?;'                 => '',
  '[^a-z0-9 _-]'          => '',
  '\s+'                   => $separator,
  '('.$q_separator.')+'   => $separator
);

$str = strip_tags($str);

foreach ($trans as $key => $val)
{
   $str = preg_replace("#".$key."#i", $val, $str);
}

How can I change $trans array so it can replace ".", "%", "+" characters with $separator.

Another one is "%20" returns as nothing. How to prevent it?

Thanks for any help.

  • 写回答

1条回答 默认 最新

  • douhu8851 2014-10-06 14:36
    关注

    Try this:

    $trans = array(
      '&.+?;'                 => '',
      '[^a-z0-9 _-]'          => '',
      '\s+'                   => $separator,
      '('.$q_separator.')+'   => $separator,
      '\.'                    => $separator,
      '\+'                    => $separator,
      '%'                     => $separator
    );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?