Possible Duplicate:
PHP - cut a string after X characters

Is there a way to cut or trim a String based on a Specific Size.

Let say we have "Lorem Ipsum dolor" and we want to cut that String to fit exactly the width of 20 Px and add "..." to the end of the String.

As far i tried this : http://www.php.net/manual/en/function.imagettfbbox.php but hard to get result as a newbie at PHP .

link|improve this question

check this link .. it will solve your question stackoverflow.com/questions/3161816/… – Tijo K Varghese Dec 29 '11 at 8:07
@TijoKVarghese i was searching for something like that msdn.microsoft.com/en-us/library/69ye7hc8.aspx but just solved with that CSS Rule . – Cody Dec 29 '11 at 8:57
feedback

closed as exact duplicate by Anna Lear Dec 31 '11 at 0:33

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 5 down vote accepted

I think you shouldn't do this with PHP. Because Number of characters you can have inside 20px is depend on the Case of letters (Upper / Lower), language of the text, font, etc...

So you better try CSS.

Ex: text-overflow: ellipsis;

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.