可以按您指定的每行字数来断行,比较方便,有一定用处。
// text_wrap( $text, $max_width, $html_type )
// $text 要格式的东西
// $max_width - 格式的长度
// $html_type 格式的方式
Function text_wrap( $text, $max_width, $html_type )
{
// $cnt keeps track of the position of t
// he last break
$cnt = 0;
if (!strcmp("PRE", $html_type))
$line_break = "n";
else
$line_break = "
n";
echo "n";
for ($i = $max_width; $i {
$width = $max_width;
while ($text[$i] != && $text[$i] != n && $text[i] != t)
{
$i--;
$width--;
}
echo substr($text, $cnt, $width),$line_break;
$cnt = $i+1;
}
$last_line = substr($text, $cnt);
if ($last_line[0] != )
echo substr($text, $cnt);
else
echo substr($text, $cnt+1);
echo "$html_type>n";
}
// 下面是个测试,你将这篇文章另存试一下
$line = ""When considering the use of a server side";