php使用wordwrap格式化文本段落的方法
程序员文章站
2023-11-09 14:16:58
本文实例讲述了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程序设计有所帮助。
上一篇: JavaScript find()方法及返回数据实例
下一篇: PHP生成随机码的思路与方法实例探索
推荐阅读
-
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文本的方法