Using this function we can extract first $lemgth words from $string
<?php
function wordlimit($string, $length = 50, $ellipsis = "...")
{
$words = explode(' ', $string);
if (count($words) > $length)
return implode(' ', array_slice($words, 0, $length)) . $ellipsis;
else
return $string;
}
?>
Friday, June 26, 2009
Php - How to display first n words of a paragraph ...
Subscribe to:
Post Comments (Atom)
Popular Hybrid Mobile App development frameworks
Popular Hybrid Mobile App development frameworks Hybrid Development Technologies List of best Hybrid App Development Frameworks ...
-
rint stylesheets are pretty well supported. In this article I’ll discuss what I think makes a good print stylesheet, and we’ll take a look a...
-
Social networking is fun. You can communicate with friends. You can share experiences with them. And you can even plan get-togethers. But f...
-
By Anna Yokoyama TOKYO - They've got ones that clean, and others that pour drinks, so it was only a matter of time before Japanese inven...
No comments:
Post a Comment