You are here: C97net • 5.01 General Functions
To cut a long string nicely
function line_wrap ($txt, $l);
Use this function to cut a long string $txt for $l characters, and cut the line in the nearest space characters, and add '...' if necessary.
Example 1
<?php
require './includes/user_init.php';
$string = 'The quick brown fox jumps over the lazy dog';
echo wordwrap ($string, 20, '<br />').'<br />';
echo line_wrap ($string, 20);
?>
There is no comment. Why not be the first?