Strings Php

    $text = "this is a test.this is a test.this is a test.this is a test.this is a test.this is a test.";
    $text = wordwrap($text, 6, "\n", 1);
    print $text;
?>