当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现把文本中的URL转换为链接的auolink()函数分享

发布:smiling 来源: PHP粉丝网  添加日期:2021-03-26 11:45:31 浏览: 评论:0 

这篇文章主要介绍了PHP实现把文本中的URL转换为链接的auolink()函数分享,非常简洁易用的一个函数,原作者还有另外一些很Nice的PHP函数,需要的朋友可以参考下

其实我在《把文本中的URL地址转换为可点击链接的JavaScript、PHP自定义函数》一文中介绍过PHP代码如何实现将URL地址转化成链接的方法,今天给大家介绍一个更加简洁的版本,先来看看PHP的源代码:

auolink() API

代码如下:

  1. /** 
  2. * Author: SeeDZ 
  3. * From: http://code.seebz.net/p/autolink-php/ 
  4. **/ 
  5. function autolink($str$attributes = array()) { 
  6.     $attrs = ''
  7.     foreach ($attributes as $attribute=>$value) { 
  8.         $attrs .= " {$attribute}=\"{$value}\""
  9.     } 
  10.     
  11.     $str = ' '.$str
  12.     $str = preg_replace('`([^"=\'>])((http|https|ftp|ftps)://[^\s< ]+[^\s<\.)])`i''$1<a href="$2" rel="external nofollow" '.$attrs.'>$2</a>'$str); 
  13.     $str = substr($str, 1); 
  14.     
  15.     return $str

怎么样,很简洁吧!看看函数的API文档吧:

语法

string autolink ( string $str [, array $attributes = array() ] )

参数介绍

str – 必选(String 类型数据)。需要查询替换的文本。

attributes -可选(Array 类型数据)。替换链接的一些可选参数。

返回值

返回替换后的文本。

autolink() 调用方法

autolink使用起来也很方便,我们可以只传一个参数,即为必选的需要替换的字符文本。例如:

  1. <?php 
  2.  
  3. $str = 'A link : http://example.com/?param=value#anchor.'
  4. $str = autolink($str); 
  5.  
  6. echo $str// A link : <a href="http://example.com/?param=value#anchor" rel="external nofollow" >http://example.com/?param=value#anchor</a>. 
  7.  
  8. ?> 

另外我们还可以设置一些额外的链接的参数,可以让生成的链接在新窗口中打开,或者不希望搜索引擎索引替换的链接。例如:

  1. <?php 
  2.  
  3. $str = 'http://example.com/'
  4. $str = autolink($strarray("target"=>"_blank","rel"=>"nofollow")); 
  5.  
  6. echo $str// <a href="http://example.com/" rel="external nofollow" target="_blank" >http://example.com/</a> 
  7.  
  8. ?> 
怎么样,方便好用吧!

Tags: auolink()

分享到: