PHP 문자 필터 함수 문자열 마지막 쉼표 제거(rtrim)

우선 따로따로 설명 하고,
trim 필터 문자열 양 끝,rtrim 필터 문자열 끝,=chop()ltrim 필터 문자열 첫 번 째.
문자열 의 버튼 을 거 르 는 쿵쿵 은 str 만 사용 할 수 있 습 니 다.replace 요.예 를 들 어 설명 하 세 요.
PHP 코드

$str = '123,333,234,';
echo rtrim($str, ',');
rtrim 인 스 턴 스 코드 2

<?php
$text = "\t\tThese are a few words :) ...  ";
$trimmed = rtrim($text);
// $trimmed = "\t\tThese are a few words :) ..."
$trimmed = rtrim($text, " \t.");
// $trimmed = "\t\tThese are a few words :)"
$clean = rtrim($binary, "\x00..\x1F");
// trim the ASCII control characters at the end of $binary
// (from 0 to 31 inclusive)
?>

좋은 웹페이지 즐겨찾기