這篇文章主要介紹了php為每個段落添加空格的方法,涉及PHP_EOL變量及數組與字符串的操作技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了php為每個段落添加空格的方法。具體實現方法如下:
<?php //Prepends whitespace to each line of a string function white_space( $string, $whitespace ) { //Create an array from the string, each key having one line $string = explode( PHP_EOL, $string ); //Loop through the array and prepend the whitespace foreach( $string as $line => $text ) { $string[ $line ] = $whitespace . $text; } //Return the string return( implode( PHP_EOL, $string ) ); } ?>
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
#以上是php如何為每個段落加上空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!