I'm pulling blog posts from a DB. I want to trim the text to a max length of 340 characters.
If the blog post is over 340 characters I want to trim the text to the last full word and add '...' on the end.
E.g.
NOT: In the begin....
BUT: In the ...
|
|
The other answers show you how you can make the text roughly 340 characters. If that's fine for you, then use one of the other answers. But if you want a very strict maximum of 340 characters, the other answers won't work. You need to remember that adding the
Note also that here I'm using the overload of See it working online: ideone |
|||||||||
|
|
It seems like you would want to first trim the text down to 340 characters exactly, then find the location of the last ' ' in the string and trim down to that amount. Like this:
|
|||||
|
|
try:
|
|||||||
|
|
you can try using functions that comes with PHP , such as wordwrap
|
|||
|
|
|
function trim_characters( $text, $length = 340 ) {
} Use this function trim_characters() to trims a string of words to a specified number of characters, gracefully stopping at white spaces. I think this is helpful to you. |
|||
|
|
|
I put the answer of John Conde in a method:
Examples:
|
|||
|
|