rtrim

(PHP 4, PHP 5, PHP 7)

rtrimɾ���ַ���ĩ�˵Ŀհ��ַ������������ַ���

˵��

rtrim ( string $str [, string $character_mask ] ) : string

�ú���ɾ�� str ĩ�˵Ŀհ��ַ������������ַ��������ء�

��ʹ�õڶ���������rtrim() ��ɾ�������ַ���

  • " " (ASCII 32 (0x20))����ͨ�հ׷���
  • "\t" (ASCII 9 (0x09))���Ʊ����
  • "\n" (ASCII 10 (0x0A))�����з���
  • "\r" (ASCII 13 (0x0D))���س�����
  • "\0" (ASCII 0 (0x00))��NUL ���ֽڷ���
  • "\x0B" (ASCII 11 (0x0B))����ֱ�Ʊ����

����

str

�����ַ�����

character_mask

ͨ��ָ�� character_mask������ָ����Ҫɾ�����ַ��б��򵥵��г�����Ҫɾ����ȫ���ַ���ʹ�� .. ��ʽ������ָ��һ����Χ��

����ֵ

���ظı����ַ�����

����

Example #1 rtrim() ʹ�÷���

<?php

$text 
"\t\tThese are a few words :) ...  ";
$binary "\x09Example string\x0A";
$hello  "Hello World";
var_dump($text$binary$hello);

print 
"\n";

$trimmed rtrim($text);
var_dump($trimmed);

$trimmed rtrim($text" \t.");
var_dump($trimmed);

$trimmed rtrim($hello"Hdle");
var_dump($trimmed);

// ɾ�� $binary ĩ�˵� ASCII ������ַ�
// (���� 0 - 31)
$clean rtrim($binary"\x00..\x1F");
var_dump($clean);

?>

�������̻������

string(32) "        These are a few words :) ...  "
string(16) "    Example string
"
string(11) "Hello World"

string(30) "        These are a few words :) ..."
string(26) "        These are a few words :)"
string(9) "Hello Wor"
string(15) "    Example string"

�μ�

  • trim() - ȥ���ַ�����β���Ŀհ��ַ������������ַ���
  • ltrim() - ɾ���ַ�����ͷ�Ŀհ��ַ����������ַ���