您好,我需要在PHP例如添加一個href標記周圍的鏈接在鳴叫如果我的鳴叫是這樣的:的裹繞在鳴叫與PHP的鏈接標籤
@username tweet body message http://t.co/sfr34s5
我需要變成這個這個用PHP:
@username tweet body message <a href="http://t.co/sfr34s5">http://t.co/sfr34s5</a>
,我認爲這可以使用的preg_replace做,我有類似的東西它已經環繞twitter的@用戶名,如下鏈接:
$tweet= preg_replace('/@([a-z0-9_]+)/i', '<a href="http://twitter.com/$1" target="_blank">@$1</a>', $tweet);
如何編輯這個正則表達式的一部分,以便在出現的tweets中爲URL添加標籤?
這可能有助於http://stackoverflow.com/questions/1925455/how-to-mimic-stackoverflow-auto-link-behavior – 2012-03-23 14:04:29