Options to truncate strings - Php

Truncate strings

Snippet Code


  
Rate this page :
  [ 0 votes]

If more then 40 char means did not go that link

<?php $long_text = "Lorem ipsum dolor sit amet, consectetur adipiscing elith."; $max_length = 40; if (strlen($long_text) > $max_length) { $short_text = (substr($long_text,0,$max_length-1)); $short_text .= "..."; $short_text .= "<a href='http://funmin.com'>Read more</a>"; echo $short_text; } else { echo $long_text; } ?>

Tags


Ask Questions

Ask Question