Search This Blog

Mind freaker Stuff

Please Visit my new blog http://www.mindfreakerstuff.com for new articles related to web and mobile designing.

Friday, April 29, 2011

Simple Word triming In PHP

      <?php $Title = "This is sample text for Trimming";
                $Title = trim($Title);
                  $limit = 20; /* Trimming Value limit */
                  if (strlen($Title) > $limit) {
                        $Title = substr($Title, 0, strrpos(substr($Title, 0, $limit), ' ')).' ...';
                   }
?>

No comments:

Post a Comment