<?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), ' ')).' ...';
}
?>
$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