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