Posted in php functions
3314
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
22
This Month
252
This Year
541

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
Ever tried. Ever failed. No matter. Try again. Fail again. Fail better. You won't believe what you can accomplish by attempting the impossible with the courage to repeatedly fail better.
Unknown
Random CSS Property

border-block-color

The border-block-color CSS property defines the color of the logical block borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the border-top-color and border-bottom-color, or border-right-color and border-left-color property depending on the values defined for writing-mode, direction, and text-orientation.
border-block-color css reference