Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP – mb_strtolower()를 사용하여 소문자 문자열 만들기


PHP에서는 mb_strtolower() 함수를 사용할 수 있습니다. 주어진 문자열을 소문자로 변경합니다. 모든 알파벳이 소문자로 변환된 문자열을 반환합니다.

구문

string mb_strtolower(str $string, str $encoding)

매개변수

mb_strtolower() 두 개의 매개변수 허용:$string$encoding .

  • $string− 소문자인 문자열은 모든 알파벳 문자가 소문자로 변환된 문자열을 반환합니다.

  • $encoding− 이 매개변수는 문자 인코딩입니다. 이 값이 없거나 null이면 내부 문자 인코딩 값이 사용됩니다.

반환 값

문자열 모든 알파벳 문자가 소문자로 변환됩니다.

예시

<?php
   // Upper and lower case characters are used to
   // convert in lower case using mb_strtoloower function
   $string = "Hello World!, Welcome to ONLINE tutorials";

   // It gives the output in lower case
   $string = mb_strtolower($string);
   echo $string;
?>

출력

주어진 문자열의 모든 문자를 소문자로 변환합니다.

hello world! welcome to online tutorials