How to set spaces in php: 1. Create a PHP sample file; 2. Set spaces through the "function white_space($string, $whitespace){...}" method.
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!