php 使用wordwrap按照用户指定长度进行换行
内容摘要
这篇文章主要为大家详细介绍了php 使用wordwrap按照用户指定长度进行换行,具有一定的参考价值,可以用来参考一下。
本范例演示了php中wordwrap如何按照用户指定的长度进行换
本范例演示了php中wordwrap如何按照用户指定的长度进行换
文章正文
这篇文章主要为大家详细介绍了php 使用wordwrap按照用户指定长度进行换行,具有一定的参考价值,可以用来参考一下。
本范例演示了php中wordwrap如何按照用户指定的长度进行换行,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
/**
* wordwrap如何按照用户指定的长度进行换行
*
* @param
* @arrange (www.idcnote.com)
**/
// create a long text for testing:
$long_text = 'This is a long text to demonstrate the usage of the ';
$long_text .= 'wordwrap function. ';
$long_text .= 'Fooooooooooooooooobar, just fooling around';
// syntax: wordwrap(input string, line max. width, break chars, cut words)
$new_text = wordwrap($long_text, 15, "<br/>\n", true);
print $new_text;
/*
The output will be:
This is a long<br/>
text to<br/>
demonstrate the<br/>
usage of the<br/>
wordwrap<br/>
function.<br/>
Foooooooooooooo<br/>
ooobar, just<br/>
fooling around
*/
/*** 代码来自php教程(www.idcnote.com) ***/
注:关于php 使用wordwrap按照用户指定长度进行换行的内容就先介绍到这里,更多相关文章的可以留意
代码注释