PHP wordwrap() 函数
wordwrap() 函数按照指定长度对字符串进行折行处理
( PHP >= 4.0.2 )
函数原型
wordwrap( string,width,break,cut )
该函数可能会在行的开头留下空格
参数
参数 | 描述 |
---|---|
string | 必需。规定要进行折行的字符串 |
width | 可选。规定最大行宽度。默认是 75 |
break | 可选。规定作为分隔符使用的字符(字串断开字符)。默认是 "\n" |
cut | 可选。规定是否对大于指定宽度的单词进行折行: FALSE - 默认,不折行 TRUE - 折行 |
返回值
如果成功,则返回折行后的字符串,如果失败,则返回 FALSE
范例
按照指定长度对字符串进行折行处理
<?php $str = "An example of a long word is: Supercalifragulistic"; echo wordwrap($str,15,"<br>n");
运行以上 PHP 范例,输出结果如下
An example of a nlong word is: nSupercalifragulistic
范例 2
使用所有的参数
<?php $str = "An example of a long word is: Supercalifragulistic"; echo wordwrap($str,15,"<br>n",TRUE);
运行以上 PHP 范例,输出结果如下
An example of a nlong word is: nSupercalifragul nistic
范例 3
对字符串进行折行
<?php $str = "An example of a long word is: Supercalifragulistic"; echo wordwrap($str,15);
运行以上范例,输出结果如下
An example of a long word is: Supercalifragulistic
点击查看源码,输出结果如下
An example of a long word is: Supercalifragulistic