We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

gfazioli on 09/21/08


Tagged

php


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

gfazioli
basicmagic
JimiJay


Very short snippet: PHP word cut


Published in: PHP 


URL: http://www.undolog.com/2008/09/21/very-short-snippet-php-word-cut/

Word Cut Function

  1. /**
  2.  * String word cut
  3.  *
  4.  * @private
  5.  */
  6. function _wpmutility_wordCut($content, $limit){
  7. $content = explode(' ',$content);
  8. for($i=0; $i<$limit; $i++) $summary[$i] = $content[$i];
  9. $summary = implode(' ', $summary).'...';
  10. return $summary;
  11. }

Report this snippet 

You need to login to post a comment.