Posted in php functions
3319
2:38 am, October 3, 2022
 

shorten string php, string length php, clip string length php

I'm pretty sure i have done this function before but i cant find it due to the keywords being wrong!

Here is a function that takes a string and shortens it and adds .. to the end, with the rest of the string in a abbr tag. 

PHP

$string = "The grid-column CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the inline-start and inline-end edge of its grid area.";

function short_string($string, $max_length = 200) {
	$string = strip_tags($string);
	if(strlen($string) <= $max_length) {
		// just return the string, as its less than or equal the max_length already. 
		return $string;
	} else {
		$short_string = substr($string, 0, $max_length);
		$additional_string = substr( $string, $max_length, strlen($string) );
		return $to_return = $short_string . '<abbr title="' . $additional_string . '">...</abbr>'; 
	}
}
                                     
// test short string return 
echo short_string($string, $max_length = 100);

View Statistics
This Week
27
This Month
257
This Year
546

No Items Found.

Add Comment
Type in a Nick Name here
 
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
“We ought to take outdoor walks in order that the mind may be strengthened and refreshed by the open air and much breathing.".
Seneca
Random CSS Property

letter-spacing

The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
letter-spacing css reference