I'm trying to find a php function that will take a string and a length number, and at that length in the string will cut it, but not if its in the middle of a word, only if its a space, and will check for the nearest space to do so.

It also would continuously do this and return the array of strings with however long the original string was (IE if the original string was about 240 in length and I wanted to cut around 80, the array would be 3 strings large).

I found a couple of functions but none that does that, and I'm having trouble creating my own.

link|improve this question

50% accept rate
You could include the function you have found, maybe some tweaking will help. – ajreal Sep 13 '11 at 17:17
feedback

3 Answers

up vote 2 down vote accepted

The wordwrap function splits a string in lines of up to a given number of characters long.

It takes care of words and won't cut in the middle of a word (unless to tell it to).

You can use it and split the string by lines:

$string = wordwrap($string, 42);
$lines = explode("\n", $string);
link|improve this answer
2  
PHP has really awesome built-in functions and language contrasts. – Braveyard Sep 13 '11 at 17:18
1  
The language is not that bad when you know it – arnaud576875 Sep 13 '11 at 17:20
You sir, are awesome. Thank you so much! – HixVAC Sep 13 '11 at 18:26
feedback

You want wordwrap().

wordwrap (string $str, int $width = 75, string $break = "\n" , bool $cut = false)

The important thing is to make sure you have $cut = false so it doesn't slice words into two parts (which is the default setting).

link|improve this answer
feedback

Use wordwrap() to do the wrapping, then you can explode() the string on the linebreaks to get it in array format.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.