vote up 0 vote down star

I am building an RSS script with mysql, and i dont want an extra field in the database... i want to shrink down the body of the article with a "... Read More" but im not sure how i can limit the number of chars echoed out onto the page?

Of course not this syntax, but something along the lines of:

echo(limit($row['newsBody'], 1000));

I dont mind if it takes 15 lines of code to do this ;)

P.S. I am sure limit() is a function, please dont tell me .. its just an example ;)

Thanks in advanced!

flag

76% accept rate
1  
You can achieve this easily using strlen() and substr(). – Pekka Oct 31 at 23:17
2  
Plus, to avoid cutting words, wordwrap(): de3.php.net/wordwrap – Pekka Oct 31 at 23:18

3 Answers

vote up 3 vote down check
echo(substr($row['newsBody'], 0, 1000));

The substr function is what you are looking for. Or you can use mb_substr if you are dealing with multi-byte strings.

link|flag
vote up 3 vote down

You could do this

$body = $row['newsBody'];
$length = strlen($body) > 1000 ? 1000 : strlen($1000);
echo substr($body,0, $length);

It'll print the first 1000 characters or the whole message which ever is shorter

link|flag
+1 for the fall-back or whichever is shorter consideration. – ricebowl Oct 31 at 23:20
1  
The strlen() check is not necessary as substr($s, 0, $length) returns at most $length chars depending on the length of $s. php.net/manual/en/function.substr.php – Ayman Hourieh Oct 31 at 23:21
Ah yes, true. :) I'll just leave it here since it might give someone the idea to do checks like this in other cases where it may matter. – aip.cd.aish Oct 31 at 23:26
vote up 1 vote down
substr( $string, 0, 1000 );
link|flag

Your Answer

Get an OpenID
or

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