For example I want to explode a string by 50 symbols (min), but I not want divide words in 2 parts. Is this possible? To explode it I can use the function str_split(), but I don't want the last word to get split.
Example: spliting string by 5 symbols;
$input = This is example, can be anything.
$output[0] = 'This'
$output[1] = 'is example,';
$output[2] = 'example';
$output[3] = 'can';
$output[4] = 'be anything';