wordwrap

(PHP 4 >= 4.0.2, PHP 5, PHP 7)

wordwrap打断字符串为指定数量的字串

说明

wordwrap ( string $str [, int $width = 75 [, string $break = "\n" [, bool $cut = FALSE ]]] ) : string

使用字符串断点将字符串打断为指定数量的字串。

参数

str

输入字符串。

width

列宽度。

break

使用可选的 break 参数打断字符串。

cut

如果 cut 设置为 TRUE,字符串总是在指定的 width 或者之前位置被打断。因此,如果有的单词宽度超过了给定的宽度,它将被分隔开来。(参见第二个范例)。 当它是 FALSE ,函数不会分割单词,哪怕 width 小于单词宽度。

返回值

返回打断后的字符串。

范例

Example #1 wordwrap() 范例

<?php
$text 
"The quick brown fox jumped over the lazy dog.";
$newtext wordwrap($text20"<br />\n");

echo 
$newtext;
?>

以上例程会输出:

The quick brown fox<br />
jumped over the lazy<br />
dog.

Example #2 wordwrap() 范例

<?php
$text 
"A very long woooooooooooord.";
$newtext wordwrap($text8"\n"true);

echo 
"$newtext\n";
?>

以上例程会输出:

A very
long
wooooooo
ooooord.

Example #3 wordwrap() 例子

<?php
$text 
"A very long woooooooooooooooooord. and something";
$newtext wordwrap($text8"\n"false);

echo 
"$newtext\n";
?>

以上例程会输出:

A very
long
woooooooooooooooooord.
and
something

参见

  • nl2br() - 在字符串所有新行之前插入 HTML 换行标记
  • chunk_split() - 将字符串分割成小块

相关文章
php 字符串 函数 返回指定的字符php gd 和图像处理 函数 取得与指定的颜色加透明度最接近的颜色php 字符串 函数 计算两个字符串之间的编辑距离php 多字节字符串 函数 检查字符串在指定的编码里是否有效php 多字节字符串 函数 convert kana one from another zen kaku han kaku and more php 多字节字符串 函数 returns the matched part of a multibyte regular expressionphp 多字节字符串 函数 set/get character encoding for multibyte regexphp 多字节字符串 函数 获取按指定宽度截断的字符串php 多字节字符串 函数 查找指定字符在另一个字符串中最后一次的出现php 多字节字符串 函数 大小写不敏感地查找指定字符在另一个字符串中最后一次的出现php 字符串 函数 计算指定文件的 md5 散列值php 字符串 函数 根据指定格式解析输入的字符php 字符串 函数 使用另一个字符串填充字符串为指定长度php 字符串 函数 查找指定字符在字符串中的最后一次出现php 字符串 函数 计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)php 字符串 函数 计算指定字符串在目标字符串中最后一次出现的位置php 字符串 函数 计算字符串中全部字符都存在于指定字符集合中的第一段子串的长度。php 字符串 函数 转换指定字符php 字符串 函数 二进制安全比较字符串(从偏移位置比较指定长度)php 字符串 函数 打断字符串为指定数量的字串
关注编程学问公众号