Created
February 14, 2013 15:40
-
-
Save PabloVallejo/4953612 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<php | |
$string = "This is a sample paragraph, it happens to be very long and I want add a space every 20 characters"; | |
echo chunk_split( $string, 20, ' ' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment