php 给段落添加空格的解决办法
内容摘要
这篇文章主要为大家详细介绍了php 给段落添加空格的简单示例,具有一定的参考价值,可以用来参考一下。
对php给每个段落添加空格的代码对此感兴趣的朋友,看看idc笔记做的技术笔
对php给每个段落添加空格的代码对此感兴趣的朋友,看看idc笔记做的技术笔
文章正文
这篇文章主要为大家详细介绍了php 给段落添加空格的简单示例,具有一定的参考价值,可以用来参考一下。
对php给每个段落添加空格的代码对此感兴趣的朋友,看看idc笔记做的技术笔记!1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <code class = "php" > /** * php给每个段落添加空格的代码 * * @param * @arrange 512-笔记网: 512pic.com **/ //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教程(www.idcnote.com) ***/ </code> |
注:关于php 给段落添加空格的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释