php 使用wordwrap按照用户指定长度进行换行
内容摘要
这篇文章主要为大家详细介绍了php 使用wordwrap按照用户指定长度进行换行,具有一定的参考价值,可以用来参考一下。
本范例演示了php中wordwrap如何按照用户指定的长度进行换
本范例演示了php中wordwrap如何按照用户指定的长度进行换
文章正文
这篇文章主要为大家详细介绍了php 使用wordwrap按照用户指定长度进行换行,具有一定的参考价值,可以用来参考一下。
本范例演示了php中wordwrap如何按照用户指定的长度进行换行,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <code class = "php" > /** * 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) ***/ </code> |
注:关于php 使用wordwrap按照用户指定长度进行换行的内容就先介绍到这里,更多相关文章的可以留意
代码注释