例
裹字符串轉換成新的生產線,當它達到一個特定的長度:
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>\n");
?>
運行示例» 定義和用法
的wordwrap()當它到達一個特定的長度函數包裝了一個串入新行。
Note:此功能可以在一行的開頭留空格。
句法
wordwrap( string,width,break,cut )
參數 | 描述 |
---|---|
string | 需要。 指定字符串分解成線 |
width | 可選的。 指定最大線寬。 默認值是75 |
break | 可選的。 指定字符為休息使用。 默認為"\n" |
cut | 可選的。 指定字比指定的寬度長是否應該被封裝:
|
技術細節
返回值: | 返回分成成功,或失敗FALSE線串。 |
---|---|
PHP版本: | 4.0.2以上 |
更新日誌: | 在PHP 4.0.3中加入切割參數 |
更多示例
實施例1
使用所有參數:
<?php
$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);
?>
代碼的HTML輸出將是(View Source) :
<!DOCTYPE html>
<html>
<body>
An example of a
long word is:
Supercalifragulistic
</body>
</html>
代碼的瀏覽器輸出將是:
An example of a long word is: Supercalifragulistic
運行示例» <PHP字符串參考