Posted in php functions
3223
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
51
This Month
340
This Year
450

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
I believe that success can be measured in the number of uncomfortable conversations you're willing to have.
Unknown
Random CSS Property

font-family

The font-family CSS property specifies a prioritized list of one or more font family names and/or generic family names for the selected element.
font-family css reference