27
2010
Shorten Text or link / URL in PHP – script
Sometimes, when you want to display the URL on a web page, it can be so long it looks untidy and messes up your layout. Of course, you can come up with suitable text for a hyperlink instead of showing the URL, but what about when a user posts a web address to your web site? Here’s a little script that, can be integrated directly into your site.
function shorten_link($link)
{
preg_match("#<a(.*?)>(.*?)</a>#",$link,$m);
for($i = 1;$i<sizeof($m)-1;$i++)
$t .= $m[$i];
return"<a{$t}>".str_replace("http://{$_SERVER['SERVER_NAME']}"."{$_SERVER['REQUEST_URI']}",
substr($_SERVER['REQUEST_URI'],1),end($m))."</a>";
}
How does it work:
Firstly it performs a regular expression, that gets the parameters of the <a> tag and then
innerHTML of the <a> tag (what’s between <a> and </a>).
This way when you are using a CMS, and it has a lot of parameters for <a> like
<a class=”some_class” id=”some_id” alt=”some_alt” href=”some_href”> it saves and in the end you get the whole link with the innerHTML shortend.
Usage:
$link is the whole link to some page in your site. For instance, if you have a link like <a href=”myawesomesite.com/awesomepage/awesomepage2/thepage.html”>then it would be shortened to
myawesomesite.com/awesomepage/awesomepage2/thepage.html</a> <ahref=”myawesomesite.com/awesomepage/awesomepage2/thepage.html”> awesomepage/awesomepage2/thepage.html</a>
Incoming search terms:
- shorten text php (2)
Related And Similar Posts
Leave a comment
Facebook Fans
Share Me With Google Plus!
Popular Posts
Social Bookmarking sites list 2012 - New and fresh bookmarking sites
93 |
Bulgarian proxy or how to open arenabg and zamunda
65 |
+ 150 New Free Directory Sites List 2012 - Sorted by Page Rank
22 |
Scrapebox crack free download ?
19 |
Great List With Google Plus / FB likes/ tweets exchange sites - Hot Topic
16 |
How to make World Of Warcraft Cataclysm Server
10 |
The Best Bulgarian Torrents - Listing
9 |
500 Free Directory List 2011 !
9 |
Free RSS Directory List Where To Submit Your Site
9 |
Guest Blogs List and Useful Information
8 |
Recent Comments
- punjab singh on New Social Bookmarking Sites List PR5-PR8 Only -2012
- Georgi on New Article Directory Sites List – May 2012 + 200 quality sites PR6-PR0
- Djesur on Bulgarian proxy or how to open arenabg and zamunda
- Djesur on Bulgarian proxy or how to open arenabg and zamunda
- Djesur on Bulgarian proxy or how to open arenabg and zamunda

By admin
490 views






