preg_replace():不推荐使用/ e修饰符,使用preg_replace_callback而不是Array转换为字符串

时间:2015-03-25 22:35:12

标签: php preg-replace preg-replace-callback

我使用该功能将URL转换为活动链接

public function make_links_blank($text)
     {
        return  preg_replace(
   array(
   '/(?(?=<a[^>]*>.+<\/a>)
         (?:<a[^>]*>.+<\/a>)
         |
         ([^="\']?)((?:https?|ftp|bf2|):\/\/[^<> \n\r]+)
     )/iex',
   '/<a([^>]*)target="?[^"\']+"?/i',
   '/<a([^>]+)>/i',
   '/(^|\s)(www.[^<> \n\r]+)/iex',
   '/(([_A-Za-z0-9-]+)(\\.[_A-Za-z0-9-]+)*@([A-Za-z0-9-]+)
   (\\.[A-Za-z0-9-]+)*)/iex'
   ),
 array(
   "stripslashes((strlen('\\2')>0?'\\1<a href=\"\\2\">\\2</a>\\3':'\\0'))",
   '<a\\1',
   '<a\\1 target="_blank" rel="nofollow">',
   "stripslashes((strlen('\\2')>0?'\\1<a        href=\"http://\\2\">\\2</a>\\3':'\\0'))",
   "stripslashes((strlen('\\2')>0?'<a href=\"mailto:\\0\">\\0</a>':'\\0'))"
         ),
        $text
   );
}

但我有错误

  

preg_replace():不推荐使用/ e修饰符,使用   改为preg_replace_callback

1 个答案:

答案 0 :(得分:0)

我使用了该代码而且效果很好

    public function make_links_blank($text=''){ 
      $rexProtocol = '(https?://)?';
      $rexDomain   = '((?:[-a-zA-Z0-9]{1,63}\.)+[-a-zA-Z0-9]{2,63}|(?:[0-9]{1,3}\.){3}[0-9]{1,3})';
      $rexPort     = '(:[0-9]{1,5})?';
      $rexPath     = '(/[!$-/0-9:;=@_\':;!a-zA-Z\x7f-\xff]*?)?';
      $rexQuery    = '(\?[!$-/0-9:;=@_\':;!a-zA-Z\x7f-\xff]+?)?';
      $rexFragment = '(#[!$-/0-9:;=@_\':;!a-zA-Z\x7f-\xff]+?)?';    
      return $text =  preg_replace_callback("&\\b$rexProtocol$rexDomain$rexPort$rexPath$rexQuery$rexFr agment(?=[?.!,;:\"]?(\s|$))&",
   function ($match)
  {
    $completeUrl = $match[1] ? $match[0] : "http://{$match[0]}";
    return '<a href="' . $completeUrl . '" rel="nofollow" target="_blank">'
    . $match[2] . $match[3] . $match[4] . '</a>';
 }
 , htmlspecialchars($text));
}