php設定空格的方法:1、建立一個PHP範例檔案;2、透過「function white_space( $string, $whitespace ){...}」方法設定空格即可。
本文操作環境:windows7系統、PHP7.1版、DELL G3電腦
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影片教學》
以上是php 怎麼設定空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!