php word wrap

Solutions on MaxInterview for php word wrap by the best coders in the world

showing results for - "php word wrap"
Julián
26 Feb 2020
1<?php
2$str = "An example of a long word is: Supercalifragulistic";
3echo wordwrap($str,15,"<br>\n");
4?>