PHP wordwrap() 函數(shù)
PHP wordwrap() 函數(shù)
實例
按照指定長度對字符串進行折行處理:
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>\n");
?>
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>\n");
?>
運行實例 ?
定義和用法
wordwrap() 函數(shù)按照指定長度對字符串進行折行處理。
注釋:該函數(shù)可能會在行的開頭留下空格。
語法
wordwrap(string,width,break,cut)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要進行折行的字符串。 |
width | 可選。規(guī)定最大行寬度。默認是 75。 |
break | 可選。規(guī)定作為分隔符使用的字符(字串斷開字符)。默認是 "\n"。 |
cut |
可選。規(guī)定是否對大于指定寬度的單詞進行折行:
|
技術(shù)細節(jié)
返回值: | 如果成功,則返回折行后的字符串。如果失敗,則返回 FALSE。 |
---|---|
PHP 版本: | 4.0.2+ |
更新日志: | 在 PHP 4.0.3 中,新增了 cut 參數(shù)。 |
更多實例
實例 1
使用所有的參數(shù):
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>n",TRUE);
?>
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>n",TRUE);
?>
運行實例 ?
實例 2
對字符串進行折行:
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15);
?>
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15);
?>
上面代碼的 HTML 輸出如下(查看源代碼):
<!DOCTYPE html>
<html>
<body>
An example of a
long word is:
Supercalifragulistic
</body>
</html>
<html>
<body>
An example of a
long word is:
Supercalifragulistic
</body>
</html>
上面代碼的瀏覽器輸出如下:
An example of a long word is: Supercalifragulistic
運行實例 ?

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 字符串
- PHP Switch 語句
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP Session
- PHP 錯誤處理
- PHP array_count_values() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP compact() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)