PHP에서 문자열의 공백을 삭제하는 방법: 1. str_ireplace() 함수 사용, "str_ireplace(' ', '', $str)" 구문 2. str_replace() 함수 사용, 구문 "str_replace(' ', ' ', $str)".
이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
방법 1: str_ireplace() 함수 사용
<?php $str = 'hello world !'; $search = ' '; $replace = ''; echo str_ireplace($search, $replace, $str); ?>
출력:
helloworld!
방법 2: str_replace 사용 () 함수
<?php $str = 'hello world !'; $str = str_replace(' ', '', $str); echo $str; ?>
출력:
helloworld!
추천 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP에서 문자열의 공백을 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!