Facebook Hash Tag and Clickable Link Tutorial
Submitted by marshallunduemi on Monday, November 23, 2015 - 19:11.
Today is another fresh tutorial for your social media networking site. after this tutorial you will be able to enable #hashtags and clickable link into your media networks as most social media do. I used this script on my Jquery instant messager app.
Function for hashtag
The script below contain function for clickable link and hashtag, copy and run the code...
Conclusion:
I hope you successfully add this function to your site. If you are facing any difficulty then let me know via comments. Keep sharing this post with your friends so that they can also enjoy the post till then Happy Coding!
- <?php
- //convert hashtags
- function gethashtags($text)
- {
- //Match the hashtags
- $hashtag = '';
- // For each hashtag, strip all characters but alpha numeric
- foreach($matchedHashtags[0] as $match) {
- }
- }
- //to remove last comma in a string
- }
- //convert text to clickable links
- function convert_clickable_links($message)
- {
- $parsedMessage = preg_replace(array('/(?i)\b((?:https?:\/\/|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:\'".,<>?«»“â€â€˜â€™]))/', '/(^|[^a-z0-9_])@([a-z0-9_]+)/i', '/(^|[^a-z0-9_])#([a-z0-9_]+)/i'), array('<a href="$1" target="_blank">$1</a>', '$1<a href="">@$2</a>', '$1<a target="_blank" href="http://codexpresslab.blogspot.com.ng/search?q=$2">#$2</a>'), $message);
- return $parsedMessage;
- }
- $txt="hello man this is #hashtags tutorial. http://codexpresslab.blogspot.com/";
- echo convert_clickable_links($txt);
- ?>
Add new comment
- 47 views