#この記事の動作環境:Windows7 システム、PHP7.1 バージョン、DELL G3 パソコンphp でスペースを設定する方法: 1. PHP サンプル ファイルを作成します; 2. "functionwhite_space($string, $whitespace){...}" メソッドを通じてスペースを設定します。
php スペースの設定方法?
php で各段落にスペースを追加する方法この記事の例では、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 Video Tutorial」
以上がPHPでスペースを設定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。