문자열에 사전 정의된 공백이나 기타 문자가 있는 경우, rtrim( ) PHP의 함수입니다. 이 함수는 PHP 4번째 버전과 위 버전에서 지원되며 PHP에서 이 함수의 반환값은 문자열이지만 함수에 전달된 입력 문자열과 비교하면 문자열이 변경됩니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
구문
PHP에서 chuck() 함수를 선언하는 구문은 다음과 같습니다.
chop(string_name, char_list)
어디,
-
string_name: 잘라내기가 필요한 문자열의 이름입니다. 즉, 잘라내기() 함수를 적용해야 합니다. 이는 구문의 필수 매개변수이며 필수입니다. 이 매개변수의 데이터 유형은 문자열 데이터 유형입니다.
-
char_list: 매개변수로 전달되는 문자열에서 제거할 문자 목록을 지정합니다. 호출되는 chuck() 함수에 char_list 매개변수가 지정되지 않은 경우, 일반적인 공백과 마찬가지로 다음 문자 목록에 적용됩니다. "이를 Null 바이트라고도 하며, t"는 탭이라고도 하고, n”은 라인 피드라고도 하고, x0B”는 수직 탭이라고도 하며, “r”은 캐리지 리턴이라고도 합니다. 이는 구문의 필수 매개변수는 아니며 선택사항입니다. 이 매개변수의 데이터 유형은 문자열 데이터 유형입니다.
Chop() 함수는 PHP에서 어떻게 작동하나요?
Chop() 함수는 PHP의 문자열 함수 중 하나입니다. 문자열 오른쪽의 필수 공백이나 지정된 문자 또는 문자열은 PHP의 chuck() 함수를 사용하여 제거할 수 있습니다.
아래 프로그램을 고려해보세요:
코드:
<?php
//declaring the string Shobha.Shivakumar#
$string = "Shobha.Shivakumar#";
//Using chop() function to remove the character # from the right side of the string
echo (chop($string, "#")."\n");
//Using chop() function to remove the characters akumar# from the right side of the string
echo (chop($string, "akumar#")."\n");
//Using chop() function to remove the characters .Shivakumar# from the right side of the string
echo (chop($string, "ha.Shivakumar#")."\n");
?>
출력:
설명:
- 위 프로그램에서는 PHP의 cut() 함수를 적용해야 하는 문자열이 선언되었습니다. 위 프로그램에서 선언된 문자열은 Shobha.Shivakumar#입니다. PHP에서 chuck() 함수를 사용하면 문자열 오른쪽의 공백이나 특정 문자를 제거할 수 있습니다. 우리 프로그램에서는 문자열에 Chob 함수를 적용하여 Shobha.Shivakumar# 문자열에서 # 문자를 제거합니다.
- PHP의 echo 문은 주어진 문자열에 잘라내기() 함수를 적용한 후 변경된 문자열을 인쇄하는 데 사용됩니다. Echo (chop($string, “#”).”n”); 명령문은 PHP에서 이 작업을 수행하는 데 사용되며 이에 대한 출력은 스냅샷에서 볼 수 있는 Shobha.Shivakumar입니다. 그런 다음 문자열에 Chob 함수를 적용하여 Shobha.Shivakumar# 문자열에서 akumar# 문자를 제거합니다. PHP의 echo 문은 주어진 문자열에 잘라내기() 함수를 적용한 후 변경된 문자열을 인쇄하는 데 사용됩니다. echo (chop($string, “akumar#”).”n”); 명령문은 PHP에서 이 작업을 수행하는 데 사용되며 이에 대한 출력은 스냅샷에서 볼 수 있는 Shobha.Shiv입니다.
- 그런 다음 문자열에 잘라내기 기능을 적용하여 문자열 Shobha.Shivakumar#에서 ha.Shivakumar# 문자를 제거합니다. PHP의 echo 문은 주어진 문자열에 잘라내기() 함수를 적용한 후 변경된 문자열을 인쇄하는 데 사용됩니다. echo (chop($string, “Shivakumar#”).”n”); 명령문은 PHP에서 이 작업을 수행하는 데 사용되며 이에 대한 출력은 스냅샷에서 볼 수 있는 Shob입니다. "n"은 PHP의 모든 echo 문에서 각 줄의 출력을 새 줄에 인쇄하는 데 사용됩니다. 다른 유형의 문자열에서 다른 문자에 대해 동일한 작업을 수행할 수 있습니다.
PHP 찹() 예시
다음은 예시입니다.
예시 #1
문자열에 대한 잘라내기() 함수의 작동을 설명하는 PHP 프로그램
코드:
<?php
//declaring the string Shobha.Shivakumar!
$string= "Shobha.Shivakumar!";
//printing the string on which the chop() function will be applied and making sure the next statement will be printed in a new line
echo $string. "\n";
//printing the changes string after the application of the input string
echo chop($string, "r!");
?>
출력:
설명:
- In the above program, a string is declared upon which the chop() function in PHP must be applied. The string declared in the above program is Shobha.Shivakumar!. By using chop() function in PHP, we can remove the whitespaces or the specific characters from the right side of the string. In our program, we apply the chop function on the string to remove the characters r! from the string Shobha.Shivakumar!
- An echo statement in PHP is used to print the changed string after the application of the chop() function on the given string. echo (chop($string, “r!”); statement is used in PHP to perform this operation and the output of this is Shobha.Shivakuma which can be seen in the snapshot. “\n” is used in the second echo statement in PHP to sure the next statement will be printed in a new line. The same operation can be performed on different character on different types of strings.
Example #2
PHP program to illustrate the working of chop() function on strings.
Code:
<?php
//declaring the string Hello! followed by Shobha Shivakumar in a new line, the string is followed by two new line characters
$string= "Hello! \n Shobha Shivakumar \n \n";
//the string is printed
echo $string;
//chop() function is applied on the string without specifying any parameter
echo chop($string);
//The changed string is printed
echo $string;
?>
Output:
Explanation:
- In the above program, a string is declared upon which the chop() function in PHP must be applied. The string declared in the above program is Hello! \n Shobha Shivakumar \n \n. By using chop() function in PHP, we can remove the whitespaces or the specific characters from the right side of the string. In our program, we apply the chop function on the string without specifying any parameters.
- An echo statement in PHP is used to print the changed string after the application of the chop() function on the given string. echo $string; statement is used in PHP to perform this operation and the output of this is Hello! Followed by Shobha Shivakumar in a new line and two new line spaces after that can be seen in the snapshot. “\n” is used in the echo statement in PHP to sure the next statement will be printed in a new line. The output after the application of chop() function without specifying the parameters removes the two line characters from the right side of the string.
위 내용은 PHP 찹()의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!