Jump to content

wordwrap problem


MDanz

Recommended Posts

When i check the source code I get this error

 

rotator cuff<br />strengthenin<br..

 

you can see the br tag is cutt off.  The code is below.

 

$thename = "rotator cuff strengthening";

 

	$newname = wordwrap($thename, 12, "<br />", true);

$limit = 33;

	if (strlen($newname) > $limit)
	{ 
		 $newname2 = substr($newname, 0, $limit) . '..'; 

	 }
		 else
	{
		$newname2 = $newname;

	}			

Link to comment
https://forums.phpfreaks.com/topic/239607-wordwrap-problem/
Share on other sites

Try this:

 

function wordwrap($text, $limit)
{
if (strlen($text) < $limit) {
	return $text;
}

$text = substr($text, 0, $limit);

$pos = strpos($text,' ');
$text = substr($text, 0, $pos);

return $text;
}

 

First, it cuts the text to $limit. Then, it searches for the position of the last occurring space and then cuts the text at that location, so you don't get any cut-off words.

Link to comment
https://forums.phpfreaks.com/topic/239607-wordwrap-problem/#findComment-1230859
Share on other sites

You better limit the string first and than wordwrap it. That way you won't be truncating line breaks.

 

Adding to it, word wrapping is better done with CSS than PHP. You can limit the string with PHP and than wrap it with a fixed-width container and a word-wrap:break-word CSS property. It's safe enough.

Link to comment
https://forums.phpfreaks.com/topic/239607-wordwrap-problem/#findComment-1230864
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.