wordwrap,是一種計算機語言函式,wordwrap() 函式按照指定長度對字元串進行折行處理。如果成功,則返回折行後的字元串。如果失敗,則返回 false。
基本介紹
- 中文名:指定長度對字元串進行折行處理
- 外文名:wordwrap
- 領域:計算機公式
- 組成:string,width,break,cut
語法,例子 1,例子 2,例子 3,
語法
wordwrap(string,width,break,cut) |
參數 | 描述 |
string | 必需。規定要進行折行的字元串。 |
width | 可選。規定最大行寬度。默認是 75。 |
break | 可選。規定作為分隔設定使用的字元(字串斷開字元)。默認是 "\n"。 |
cut | 可選。規定是否對大約指定寬度的單詞進行折行。默認是 FALSE (no-wrap)。 |
例子 1
<?php $str = "An example on a long word is: Supercalifragulistic"; echo wordwrap($str,15); ?> |
瀏覽器輸出:
An example on a long word is: Supercalifragulistic |
HTML 原始碼:<html>
<html>
<body>
An example on a
long word is:
Supercalifragulistic
</body>
</html>
例子 2
<?php $str = "An example on a long word is: Supercalifragulistic"; echo wordwrap($str,15,"<br />\n"); ?> |
輸出:
An example on a long word is: Supercalifragulistic |
例子 3
<?php $str = "An example on a long word is: Supercalifragulistic"; echo wordwrap($str,15,"<br />\n",TRUE); ?> |
輸出:
An example on a long word is: Supercalifragul istic |
PHP String 函式