Posted in php functions
3301
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
41
This Month
239
This Year
528

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


Bajo
Random CSS Property

min-block-size

The min-block-size CSS property defines the minimum horizontal or vertical size of an element's block, depending on its writing mode. It corresponds to either the min-width or the min-height property, depending on the value of writing-mode.
min-block-size css reference