/ Published in: PHP
modification to http://snipplr.com/view/12987/limit-words-in-a-string/
Appends ... if string is truncated.
Expand |
Embed | Plain Text
function limit_words($string, $word_limit) { $append = ''; $append = '...'; } }
You need to login to post a comment.
