Using PHP, we can shorten the length of our string and just replace the rest with three dots.
This is usually needed in a software application, especially when the string length is too long to show to the user.
So we will write a function that is re-usable and which we can always call or use in any other programming.
function trimString($string, $repl, $limit)
{
if(strlen($string) > $limit)
{
return substr($string, 12, $limit) . $repl;
}
else
{
return $string;
}
}
?>
echo trimString("Hello Codeflare", "...", 3);
The trimString function we created takes three (3) parameters:
Next, we check if the length of the given string is greater than the limit which we have set. If it is, we truncate it and append our three dots. If it’s not, we just return the given string.
This is how we shorten the length of a string and replace it with three (3) dots in PHP.
Let me know what you think in the comments.
When starting a JavaScript project, one of the first decisions you’ll face is: Should I…
Software development is one of the most valuable skills you can learn. From building websites…
In JavaScript, arrays are used to store multiple values in a single variable. While JavaScript…
Containerization is a lightweight form of virtualization that packages an application and its dependencies into…
Microsoft is discontinuing support for its Remote Desktop app on Windows, effective May 27th. Users…
Now that React Native is your go-to framework for building cross-platform mobile applications efficiently, it's…