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 Video Tutorial"
위 내용은 PHP에서 공백을 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!