Showing posts with label I am writing an application in PHP that outputs a printable version of driving directions. It contains some long sentences. Show all posts
Showing posts with label I am writing an application in PHP that outputs a printable version of driving directions. It contains some long sentences. Show all posts

Saturday, May 16, 2009

-

I am writing an application in PHP that outputs a printable version of driving directions. It contains some long sentences, and I am a neat freak, and would like to make sure that no line exceeds 50 characters. How do I accomplish that with PHP?

On large strings that need to be formatted according to some length specifications, use wordwrap() or chunk_split().