PHP 实现自动转换URL,跳转至超链接的方法

前端之家收集整理的这篇文章主要介绍了PHP 实现自动转换URL,跳转至超链接的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
wordpress中,如果你想自动转换URL,跳转至超链接页面,你可以利用内置的函数make_clickable()执行此操作。如果你想基于wordpress之外操作该程序,那么你可以参考wp-includes/formatting.PHP代码。 
经测试代码如下:
  1. <?PHP
  2. function _make_url_clickable_cb($matches) {
  3. $ret = '';
  4. $url = $matches[2];
  5. if ( empty($url) )
  6. return $matches[0];
  7. // removed trailing [.,;:] from URL
  8. if ( in_array(substr($url,-1),array('.',',';',':')) === true ) {
  9. $ret = substr($url,-1);
  10. $url = substr($url,strlen($url)-1);
  11. }
  12. return $matches[1] . "$url" . $ret;
  13. }
  14. function _make_web_ftp_clickable_cb($matches) {
  15. $ret = '';
  16. $dest = $matches[2];
  17. $dest = 'http://' . $dest;
  18. if ( empty($dest) )
  19. return $matches[0];
  20. // removed trailing [,;:] from URL
  21. if ( in_array(substr($dest,':')) === true ) {
  22. $ret = substr($dest,-1);
  23. $dest = substr($dest,strlen($dest)-1);
  24. }
  25. return $matches[1] . "$dest" . $ret;
  26. }
  27. function _make_email_clickable_cb($matches) {
  28. $email = $matches[2] . '@' . $matches[3];
  29. return $matches[1] . "$email";
  30. }
  31. function make_clickable($ret) {
  32. $ret = ' ' . $ret;
  33. // in testing,using arrays here was found to be faster
  34. $ret = preg_replace_callback('#([\s>])([\w]+?://[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is','_make_url_clickable_cb',$ret);
  35. $ret = preg_replace_callback('#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,'_make_web_ftp_clickable_cb',$ret);
  36. $ret = preg_replace_callback('#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i','_make_email_clickable_cb',$ret);
  37. // this one is not in an array because we need it to run last,for cleanup of accidental links within links
  38. $ret = preg_replace("#(]+?>|>))]+?>([^>]+?)#i","$1$3",$ret);
  39. $ret = trim($ret);
  40. return $ret;
  41. }
  42. /*** 以上代码来自:编程之家 jb51.cc(jb51.cc) ***/
  43. ?>

猜你在找的PHP相关文章