Jump to content

Shorten String Nightmare


liamloveslearning

Recommended Posts

Hi all, im trying to shorten this string which cnotains about 1000 characters, to say 250

<?php echo $row_Best_Sellers['experience_name']; ?>

 

Ive tried using the below to no avail, can anybody give me some advice?

 

<?PHP
$small = some_function($row_Best_Sellers['experience_description']);
echo $small;

function some_function($string){
     $string = substr($string,0,100);
     $string = substr($string,0,strrpos($string," "));
     return $string;
}
?>

Link to comment
Share on other sites

I've also tried to no avail. 

<?php
$text = 'something massivvveeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee';
function ShortenText($text) 
{
  
$chars = 25;        $text = $text." "; 
$text = substr($text,0,$chars);
$text = substr($text,0,strrpos($text,' '));
$text = $text."...";        return $text; 
}
?>

Link to comment
Share on other sites

What do you get as output?

 

$string = substr($string,0,100);

$string = substr($string,0,strrpos($string," "));

 

Should give you an output of less then 100 characters (unless the last character is a space of course). The below should give you the desired output.

 

function some_function($string, $max_avg_length = 250) {
    return substr($string, 0, (isset($string[$max_avg_length]) ? strrpos($string, ' ', $max_avg_length) : 0));
}

Link to comment
Share on other sites

Thanks for your response ignace,

 

I managed to get it working using

<?php
echo substr($row_Best_Sellers['experience_description'],0,80)."...";
?>

but now im cropping my paragraph in the middle fo words, is there a way to exclude this?

 

echo isset($row_Best_Sellers['experience_description'][90]) // make sure there is something after the 80th character
    // cut the string off at the space preceding the 80th character
    ? substr($row_Best_Sellers['experience_description'], 0, strrpos($row_Best_Sellers['experience_description'], ' ', 80)) . '...'
    : $row_Best_Sellers['experience_description']; // otherwise just print it

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.