php给每个段落添加空格的方法
本文实例讲述了php给每个段落添加空格的方法。分享给大家供大家参考。具体实现方法如下:
<?php //Prependswhitespacetoeachlineofastring functionwhite_space($string,$whitespace) { //Createanarrayfromthestring,eachkeyhavingoneline $string=explode(PHP_EOL,$string); //Loopthroughthearrayandprependthewhitespace foreach($stringas$line=>$text) { $string[$line]=$whitespace.$text; } //Returnthestring return(implode(PHP_EOL,$string)); } ?>
希望本文所述对大家的php程序设计有所帮助。