Reputation: 33
I want to display a small intro of with a limited number of words without cutting the last word if it is too long... I know there is a php function substr() but it does not display the intro like "this is my starting text..." It makes it say "this is my starting t..." in PHP. Thank you for any answer.
<a href="#">'.substr($rows['title'],0,50).'</a>
Upvotes: 2
Views: 4015
Reputation: 198
why not this:
implode(' ', array_slice(explode(' ', $rows['title']), 0, 50));
Upvotes: 5