博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP之string之wordwrap()函数使用
阅读量:6760 次
发布时间:2019-06-26

本文共 1084 字,大约阅读时间需要 3 分钟。

wordwrap

  • (PHP 4 >= 4.0.2, PHP 5, PHP 7)
  • wordwrap — Wraps a string to a given number of characters
  • wordwrap — 打断字符串为指定数量的字串

Description

string wordwrap (     string $str [,     int $width = 75 [,     string $break = "\n" [,     bool $cut = FALSE ]]]     )//Wraps a string to a given number of characters using a string break character.//使用字符串断点将字符串打断为指定数量的字串。

Parameters

str

  • The input string.
  • 输入字符串。

width

  • The number of characters at which the string will be wrapped.
  • 列宽度。

break

  • The line is broken using the optional break parameter.
  • 使用可选的 break 参数打断字符串。

cut

  • If the cut is set to TRUE, the string is always wrapped at or before the specified width. So if you have a word that is larger than the given width, it is broken apart. (See second example). When FALSE the function does not split the word even if the width is smaller than the word width.
  • 如果 cut 设置为 TRUE,字符串总是在指定的 width 或者之前位置被打断。因此,如果有的单词宽度超过了给定的宽度,它将被分隔开来。(参见第二个范例)。 当它是 FALSE ,函数不会分割单词,哪怕 width 小于单词宽度。

Return Values

  • Returns the given string wrapped at the specified length.
  • 返回打断后的字符串。

Examples

See

All rights reserved

转载地址:http://nmbeo.baihongyu.com/

你可能感兴趣的文章
Apr. 2th
查看>>
栅格那点儿事(四D)
查看>>
反向代理服务器的工作原理(转)
查看>>
MVC前后台获取Action、Controller、ID名方法 以及 路由规则
查看>>
fnb2b分支拉取注意事项
查看>>
电脑上没有iis组件,怎么才能安装iis?
查看>>
项目总结01:JSP mysql SpringMvc下中国省市县三级联动下拉框
查看>>
迁移学习(训练数据少的可怜时的办法)
查看>>
Codeforces 798A - Mike and palindrome
查看>>
Chapter 6、字符串(二)(1st,Mar.)
查看>>
4-3 求链式表的表长 (10分)
查看>>
[BZOJ 1491][NOI2007]社交网络(Floyd)
查看>>
# 学号 2017-2018-20172309 《程序设计与数据结构》实验1报告
查看>>
OrderOnline——数据库设计(已更新)
查看>>
(四)虚拟存储管理器的页面调度
查看>>
玩转Windows CPU占用时间 ——编程之美 读书笔记1.1
查看>>
苹果官方的图标大小的调整
查看>>
Maven整理
查看>>
观《构建之法》有感
查看>>
maven环境快速搭建(转)
查看>>