Last Updated: February 25, 2016
·
773
· akhyar

How to retrieve hashtags from a tweet in PHP

$tweet = "How to retrieve a #hashtag in #php via #coderwall";
preg_match_all("/(#\w+)/", $tweet, $hashtags);

The result is stored in array $hashtags