依照指定長度對字串進行折行處理:
<?php$str = "An example of a long word is: Supercalifragulistic";echo wordwrap($str,15,"<br>n");?>wordwrap() 函數依照指定長度對字串進行折行處理。
註:函數可能會在行的開頭留下空格。
wordwrap( string,width,break,cut )
參數 | 描述 |
---|---|
string | 必需。規定要進行折行的字串。 |
width | 可選。規定最大行寬度。預設是75。 |
break | 可選。規定作為分隔符號使用的字元(字符串斷開字元)。預設是"n"。 |
cut | 可選。規定是否對大於指定寬度的單字進行折行: FALSE - 預設。不折行 TRUE - 折行 |
傳回值: | 如果成功,則傳回折行後的字串。如果失敗,則傳回FALSE。 |
---|---|
PHP 版本: | 4.0.2+ |
更新日誌: | 在PHP 4.0.3 中,新增了cut參數。 |
使用所有的參數:
<?php$str = "An example of a long word is: Supercalifragulistic";echo wordwrap($str,15,"<br>n",TRUE);?>對字串進行折行:
<?php$str = "An example of a long word is: Supercalifragulistic";echo wordwrap($str,15);?>上面程式碼的HTML 輸出如下(查看原始碼):
<!DOCTYPE html><html><body>An example of along word is:Supercalifragulistic</body></html>上面程式碼的瀏覽器輸出如下:
An example of a long word is: Supercalifragulistic