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

php获取字符串中url自动加超级链接

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-18 10:07:30 浏览: 评论:0 

有时我们希望用户提交的连接地址自动给这个连接加上a标签了,这个其实就是给文本url地址加超级链接了,下面整理了几个例子希望对各位会带来帮助.

PHP实例代码如下:

  1. $string = "这是php提取文本内容字符串中的网址,连接为http://www.phpfensi.com 站点"
  2.  
  3. //连接后需要有个空格或回车。  
  4.  
  5. $string = eregi_replace("http://([^ ,\r\n]*)","<a href=\\0 target=_blank>\\0</a>",$string);   
  6. $string = eregi_replace("ftp://([^ ,\r\n]*)","<a href=\\0 target=_blank>\\0</a>",$string);  
  7.   
  8. 例子1 代码如下:
  9. <?php 
  10. $str='这样的http://www.phpfensi.com/ play/?id=1010&p=1_0-1试试!'
  11. $pattern='/(http:\/\/|https:\/\/|ftp:\/\/)([\w:\/\.\?=&-_]+)/is'
  12. $str=preg_replace($pattern'<a href=\1\2>\2</a>'$str); 
  13. echo $str
  14. ?> 
  15.   
  16. 例子2 代码如下:
  17. <?php 
  18. function autolink($foo)    
  19. {
  20.     $foo = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_/+.~#?&//=]+)''<a href="/1" mce_href="/1" target=_blank rel=nofollow>/1</a>'$foo);    
  21.     ifstrpos($foo"http") === FALSE ){    
  22.     $foo = eregi_replace('(www.[-a-zA-Z0-9@:%_/+.~#?&//=]+)''<a href="http:///1" mce_href="http:///1" target=_blank rel=nofollow >/1</a>'$foo);    
  23. }else{    
  24.     $foo = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_/+.~#?&//=]+)''/1<a href="http:///2" mce_href="http:///2" target=_blank rel=nofollow >/2</a>'$foo);    
  25. }    
  26. return $foo;    
  27. }   
  28. ?> 

Tags: php获取字符串 url自动加链接

分享到: