Php/func string wordwrap

来自菜鸟教程
跳转至:导航、​搜索

PHP wordwrap()函数

❮PHP字符串参考

当字符串达到特定长度时,将其换行:

<?php

$str = "An example of a long word is: Supercalifragulistic";

echo wordwrap($str,15,"<br>\n");

?>

定义和用法

当到达特定长度时,wordwrap()函数会将字符串包装为新行。

注意: 此功能可能会在行首保留空白。

句法

wordwrap(string,width,break,cut)

参数值

参数 描述
string 需要。指定要分解成几行的字符串
width 可选的。指定最大线宽。默认值为75
break 可选的。指定用作分隔符的字符。默认值为“ \ n”
cut

可选的。指定是否应该包装长度超过指定宽度的单词:

  • FALSE-默认。无包装
  • 正确-换行

技术细节

返回值: 如果成功,则返回分成几行的字符串,如果失败,则返回FALSE。
PHP版本: 4.0.2+
更新日志: The

cut 参数已在PHP 4.0.3中添加

更多例子

使用所有参数:

<?php

$str = "An example of a long word is: Supercalifragulistic";

echo wordwrap($str,15,"<br>\n",TRUE);

?>

将字符串换行:

 <?php

$str = "An example of a long word is: Supercalifragulistic";

echo wordwrap($str,15);

?>

上面代码的HTML输出为(查看源代码):

 <!DOCTYPE html>
<html>

<body>

An example of a

long word is:

Supercalifragulistic

</body>

</html>

上面代码的浏览器输出将是:

An example of a long word is: Supercalifragulistic 

❮PHP字符串参考