Jump to content

... After certain amount of characters


magebash

Recommended Posts

<?php
// Function to abbreviate number of characters.
function truncate($string, $max_chars = 60) {
if(strlen($string) > $max_chars)
{
	$string = substr($string, 0, $max_chars).'...';
}

return $string;
?>

 

change 60 to the number of characters you want it to dispaly.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.