ejaboneta Posted November 29, 2010 Share Posted November 29, 2010 I'm trying to split up long text by words up to 1000 characters. What I mean is that I can't have a string be longer than 1000 characters. I know how to split up by 1000 characters, but then words get cut off at the end. So I figured I could preg_split it using something like this: $array = preg_split("/.{950,1000} /",$content); But that doesn't seem to work... Quote Link to comment Share on other sites More sharing options...
trq Posted November 30, 2010 Share Posted November 30, 2010 chunk_split Quote Link to comment Share on other sites More sharing options...
sasa Posted November 30, 2010 Share Posted November 30, 2010 you mean wordwrap() function Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.