这是我的功能:
$words = explode('. ',$desc);
$out = '';
foreach ($words as $key => $value) {
$out .= $value;
$rand = rand(0, 4);
if ($rand == 2) {
$out .= "\n";
} else {
$out .= ' ';
}
}
简而言之,它在随机点之后插入新行,但在这种情况下,点被删除。
我该怎么做explode('. ',$desc)
,并在它们所在的位置留下点?