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

문자열의 문자 수를 찾는 PHP 프로그램

<시간/>

문자열의 문자 수를 찾으려면 PHP 코드는 다음과 같습니다. -

예시

<?php
   $my_string = "Hi there, this is a sample ";
   $len = mb_strlen($my_string);
   print_r("The number of characters in the string is ");
   echo $len;
?>

출력

The number of characters in the string is 27

위에서 -

사이에 필요한 공백보다 많은 문자열이 정의되어 있습니다.
$my_string = "Hi there, this is a sample ";

다음으로 'strlen' 함수를 사용하여 문자열의 길이를 계산합니다. 이 길이는 변수에 할당됩니다. 이것은 공백을 포함하여 문자열에 있는 문자를 제공합니다 -

$len = mb_strlen($my_string);

그런 다음 계산된 길이가 화면에 인쇄됩니다. -

print_r("The number of characters in the string is ");
echo $len;