php

2020.09.18 09:43

trim - 앞뒤 공백 제거 함수 및 preg_replace 정규표현식

  • 관리자 2020.09.18 인기
  • 6,880
    0
(PHP 4, PHP 5, PHP 7)
 trim — Strip whitespace (or other characters) from the beginning and end of a string


 ltrim() - 문자열 시작에서 공백(이나 다른 문자)를 제거
rtrim() - 문자열 마지막의 공백(이나 다른 문자)을 제거

$email = preg_replace("/\s+/", "", $email);
  • 공유링크 복사

    댓글목록

    등록된 댓글이 없습니다.