<?php
$position=14; // Define how many character you want to display.
$message="You are now joining over 2000 current";
$post = substr($message, 0, $position);
echo $post;
echo "...";
?>
<?php
$position=14; // Define how many characters you want to display.
$message="You are now joining over 2000 current";
// Find what is the last character.
$post = substr($message,$position,1);
// In this step, if the last character is not " "(space) run this code.
// Find until we found that last character is " "(space)
// by $position+1 (14+1=15, 15+1=16 until we found " "(space) that mean character no.20)
if($post !=" "){
while($post !=" "){
$i=1;
$position=$position+$i;
$message="You are now joining over 2000 current";
$post = substr($message,$position,1);
}
}
$post = substr($message,0,$position);
// Display your message
echo $post;
echo "...";
?>