Twitter链接(PHP)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Twitter链接(PHP)相关的知识,希望对你有一定的参考价值。

linkify twitter text status
  1. function linkify_twitter_status($status_text)
  2. {
  3. // linkify URLs
  4. $status_text = preg_replace(
  5. '/(https?://S+)/',
  6. '<a href="1">1</a>',
  7. $status_text
  8. );
  9.  
  10. // linkify twitter users
  11. $status_text = preg_replace(
  12. '/(^|s)@(w+)/',
  13. '[email protected]<a href="http://twitter.com/2">2</a>',
  14. $status_text
  15. );
  16.  
  17. // linkify tags
  18. $status_text = preg_replace(
  19. '/(^|s)#(w+)/',
  20. '1#<a href="http://search.twitter.com/search?q=%232">2</a>',
  21. $status_text
  22. );
  23.  
  24. return $status_text;
  25. }

以上是关于Twitter链接(PHP)的主要内容,如果未能解决你的问题,请参考以下文章

Twitter链接(PHP)

PHP 分享Twitter链接

PHP Twitter @reply和网址链接

php [Wordpress]自动链接到Twitter用户名

PHP 正则表达式使Twitter链接可点击

PHP 计算在Twitter上共享Web链接的次数