/ Published in: PHP
modification to [http://snipplr.com/view/12987/limit-words-in-a-string/](http://snipplr.com/view/12987/limit-words-in-a-string/)
Appends ... if string is truncated.
Appends ... if string is truncated.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function limit_words($string, $word_limit) { $append = ''; $append = '...'; } }