How to count characters including white space and then break after a certain length for instance how would i break a string after 25 characters onto a new li开发者_开发问答ne using PHP?
Fortunately somebody's already done the work. Use wordwrap.
If you really want to reinvent the wheel for learning sake, here are a few pieces to get you started:
for (...) { }strlen()$str[$x]to access characterxof string$str%.
Try chunk_split() if you don't mind cutting words in half. It treats whitespace as any other char.
加载中,请稍侯......
精彩评论