Home  >  Article  >  Backend Development  >  How to set spaces in php

How to set spaces in php

藏色散人
藏色散人Original
2021-11-15 09:27:006450browse

How to set spaces in php: 1. Create a PHP sample file; 2. Set spaces through the "function white_space($string, $whitespace){...}" method.

How to set spaces in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

php How to set spaces?

How to add spaces to each paragraph in php

The example in this article describes the method of adding spaces to each paragraph in php. Share it with everyone for your reference. The specific implementation method is as follows:

<?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 ) );
 }
?>

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to set spaces in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn