Limit string length and display '...' : String Length : String PHP Source Code


PHP Source Code » String » String Length »

 

Limit string length and display '...'



<?php
   // Limit $summary to how many characters?
   $limit = 100;
$summary = <<< summary
Text Text Text Text Text Text Text Text Text Text Text Text 
Text Text Text Text Text Text Text Text Text 
Text Text Text Text Text Text Text Text Text Text 
Text Text Text Text Text Text Text Text Text 
Text Text Text Text Text Text Text Text Text Text 
Text Text Text Text Text Text Text Text Text Text 
summary;

   if (strlen($summary> $limit)
      $summary = substr($summary, 0, strrpos(substr($summary, 0, $limit)' ')) '...';
      echo $summary;
?>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo String
» String Length