Posted in php functions
3334
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
42
This Month
272
This Year
561

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
Treasure every moment that you have and treasure it more because you shared it with someone special, special enough to spend your time...and remember that time waits for no one.
Unknown
Random CSS Property

unicode-range

The unicode-range CSS descriptor sets the specific range of characters to be used from a font defined by @font-face and made available for use on the current page. If the page doesn't use any character in this range, the font is not downloaded; if it uses at least one, the whole font is downloaded.
unicode-range (@font-face) css reference