当前位置:首页 > PHP教程 > php应用 > 列表

php给每个段落添加空格的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-17 15:01:10 浏览: 评论:0 

这篇文章主要介绍了php给每个段落添加空格的方法,涉及PHP_EOL变量及数组与字符串的操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了php给每个段落添加空格的方法,分享给大家供大家参考,具体实现方法如下:

  1. <?php 
  2.  //Prepends whitespace to each line of a string 
  3.  function white_space( $string$whitespace ) 
  4.  { 
  5.   //Create an array from the string, each key having one line 
  6.   $string = explode( PHP_EOL, $string ); 
  7.   //Loop through the array and prepend the whitespace 
  8.   foreach$string as $line => $text ) 
  9.   { 
  10.    $string$line ] = $whitespace . $text
  11.   } 
  12.   //Return the string 
  13.   return( implode( PHP_EOL, $string ) ); 
  14.  } 
  15. ?>

Tags: php添加空格

分享到: