PHP and Web Technologies Freak
1 2 3 4 5 6 7 8 9 10 11 | function ShortText($text) { // display char lenght $chars = 10; $text = $text." "; $text = substr($text,0,$chars); $text = substr($text,0,strrpos($text,' ')); $text = $text."..."; // You can give a link here return $text; } //usage; echo ShortText("it's a very very very very very very very longggggggggggggg text"); |
Copyright © 2007 - Ersin Acar - is proudly powered by WordPress
Dilectio Theme is created by: Design Disease brought to you by Smashingmagazine.com
Leave a reply