Quick actions

cmd+k|ctrl+k

Navigation

Languages

#hastag and @profile links for Twitter profile text

Snippet info

Language

Php

Visibility

public

Author

mertskaplan

Created

2018-08-18T12:02:47Z

Updated

2018-08-23T16:25:30Z

<?php

function hashtag($text) {
    $text = preg_replace('/(?<!\S\W\w)#([0-9a-zA-Z]+)/', '<a href="https://twitter.com/hashtag/$1?src=hash" target="_blank" rel="nofollow">#$1</a>', $text);
    return preg_replace('/(?<!\S\W\w)@([0-9a-zA-Z]+)/', '<a href="https://twitter.com/$1" target="_blank" rel="nofollow">@$1</a>', $text);
}

/* using */

$text = "Journalist @NYT - open source supporter • Web developer & Graphic designer | #freelancer #coder #news";
echo hashtag($text);
INFO