我正在 PHP 中編寫一個(gè)函數(shù)來將單行字符串分離為多行字符串。我的功能如下所示'function addNewlines($content = null, $split_as = 25, $seprater = PHP_EOL) { $result = ''; while ($content != null) { $result .= substr($content, 0, $split_as) . $seprater; $content = substr($content, $split_as); } return $result;}我從另一個(gè)用于將數(shù)據(jù)庫數(shù)據(jù)導(dǎo)出到 Excel 的函數(shù)中調(diào)用這個(gè)函數(shù), $detail[$value]= $this->addNewlines($detail[$value]);//call function to split它可以為從數(shù)據(jù)庫獲取的所有行調(diào)用這些函數(shù)。 您可以看到,對(duì)于包含 250 個(gè)字符的字符串,addNewlines 函數(shù)可能需要 10 次迭代。有沒有更好的方法來減少迭代次數(shù)或優(yōu)化這個(gè)函數(shù)。我的意思是使用正則表達(dá)式或任何其他方法?
有沒有更好的方法在 PHP 中將單獨(dú)的單行添加到多行?
慕碼人2483693
2023-12-15 17:04:43