段落在3行内逐行显示

时间:2009-07-29 09:43:22

标签: php

我有一个75字符的字符串,它在3行显示我如何在php pl帮助中显示3行

1 个答案:

答案 0 :(得分:2)

如果我正确理解了这个问题,那么您正在寻找wordwrap

<?php
// a string with 75 characters
$x = str_repeat('x', 75); 

echo wordwrap($x, 25, '<br />', true);

编辑:如果你的字符串包含空格,则wordwrap()可能会将字符串分成更小的部分 然后你需要像str_split这样的东西。

<?php
// a string with 75 characters including spaces
$x = str_repeat('x y', 25); 
echo join('<br />', str_split($x, 25));