Twitter链接(PHP)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Twitter链接(PHP)相关的知识,希望对你有一定的参考价值。
linkify twitter text status
function linkify_twitter_status($status_text) { // linkify URLs '/(https?://S+)/', '<a href="1">1</a>', $status_text ); // linkify twitter users '/(^|s)@(w+)/', '[email protected]<a href="http://twitter.com/2">2</a>', $status_text ); // linkify tags '/(^|s)#(w+)/', '1#<a href="http://search.twitter.com/search?q=%232">2</a>', $status_text ); return $status_text; }
以上是关于Twitter链接(PHP)的主要内容,如果未能解决你的问题,请参考以下文章