= 4.0.2, PHP 5, PHP 7, PHP 8)wordwrap — 打斷字符串為指定數(shù)量的字串說(shuō)明wordwrap( string $str, int $width = 75, string $break = " "="" bool="" \n",="">
(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
wordwrap — 打斷字符串為指定數(shù)量的字串
$str
,$width
= 75,$break
= "\n",$cut
= false
使用字符串?dāng)帱c(diǎn)將字符串打斷為指定數(shù)量的字串。
str
輸入字符串。
width
列寬度。
break
使用可選的 break
參數(shù)打斷字符串。
cut
如果 cut
設(shè)置為 true
,字符串總是在指定的 width
或者之前位置被打斷。因此,如果有的單詞寬度超過(guò)了給定的寬度,它將被分隔開(kāi)來(lái)。(參見(jiàn)第二個(gè)范例)。
當(dāng)它是 false
,函數(shù)不會(huì)分割單詞,哪怕 width
小于單詞寬度。
返回打斷后的字符串。
示例 #1 wordwrap() 范例
<?php
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap($text, 20, "<br />\n");
echo $newtext;
?>
以上例程會(huì)輸出:
The quick brown fox<br /> jumped over the lazy<br /> dog.
示例 #2 wordwrap() 范例
<?php
$text = "A very long woooooooooooord.";
$newtext = wordwrap($text, 8, "\n", true);
echo "$newtext\n";
?>
以上例程會(huì)輸出:
A very long wooooooo ooooord.
示例 #3 wordwrap() 例子
<?php
$text = "A very long woooooooooooooooooord. and something";
$newtext = wordwrap($text, 8, "\n", false);
echo "$newtext\n";
?>
以上例程會(huì)輸出:
A very long woooooooooooooooooord. and something