例
裹字符串转换成新的生产线,当它达到一个特定的长度:
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>\n");
?>
运行示例» 定义和用法
的wordwrap()当它到达一个特定的长度函数包装了一个串入新行。
Note:此功能可以在一行的开头留空格。
句法
wordwrap( string,width,break,cut )
参数 | 描述 |
---|---|
string | 需要。 指定字符串分解成线 |
width | 可选的。 指定最大线宽。 默认值是75 |
break | 可选的。 指定字符为休息使用。 默认为"\n" |
cut | 可选的。 指定字比指定的宽度长是否应该被封装:
|
技术细节
返回值: | 返回分成成功,或失败FALSE线串。 |
---|---|
PHP版本: | 4.0.2以上 |
更新日志: | 在PHP 4.0.3中加入切割参数 |
更多示例
实施例1
使用所有参数:
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>\n",TRUE);
?>
运行示例» 实施例2
裹字符串转换成新的线路:
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15);
?>
代码的HTML输出将是(View Source) :
<!DOCTYPE html>
<html>
<body>
An example of a
long word is:
Supercalifragulistic
</body>
</html>
代码的浏览器输出将是:
An example of a long word is: Supercalifragulistic
运行示例» <PHP字符串参考