php使用wordwrap格式化文本段落的方法
程序员文章站
2022-06-08 20:19:24
本文实例讲述了php使用wordwrap格式化文本段落的方法。分享给大家供大家参考。具体分析如下:
wordwrap()函数可以按照指定的固定行长度格式化文本段落,让段落...
本文实例讲述了php使用wordwrap格式化文本段落的方法。分享给大家供大家参考。具体分析如下:
wordwrap()函数可以按照指定的固定行长度格式化文本段落,让段落看起来更加整齐
<?php $string = "trading on margin poses additional risks and is not suitable for all investors. a complete list of the risks associated with margin trading is available in the margin risk disclosure document."; $string = str_replace("\n", " ", $string); $string = str_replace("\r", " ", $string); print(wordwrap($string, 40)."\n"); ?>
上面的代码返回如下结果
trading on margin poses additional risks and is not suitable for all investors. a complete list of the risks associated with margin trading is available in the margin risk disclosure document.
希望本文所述对大家的php程序设计有所帮助。
上一篇: Django实现图片文字同时提交的方法
下一篇: Python易忽视知识点小结
推荐阅读
-
php使用wordwrap格式化文本段落的方法
-
php使用NumberFormatter格式化货币的方法
-
php使用NumberFormatter格式化货币的方法
-
php使用文本统计访问量的方法 php定时方法 php封装方法 php系统授权方
-
php使用wordwrap格式化文本段落的方法,_PHP教程
-
php使用NumberFormatter格式化货币的方法,php货币格式化
-
PHP使用gmdate实现将一个UNIX 时间格式化成GMT文本的方法,
-
php使用NumberFormatter格式化货币的方法,php货币格式化
-
php使用wordwrap格式化文本段落的方法
-
PHP使用gmdate实现将一个UNIX 时间格式化成GMT文本的方法