目录

PHP rtrim() 函数

❮ PHP 字符串参考

示例

删除字符串右侧的字符:

<?php
$str = "Hello World!";
echo $str . "<br>";
echo rtrim($str,"World!");
?>
亲自试一试 »

定义和用法

rtrim() 函数从字符串右侧删除空格或其他预定义字符。

相关功能:

  • 修剪()- 从字符串左侧删除空格或其他预定义字符
  • 修剪()- 删除字符串两侧的空格或其他预定义字符

语法

rtrim( string,charlist)

参数值

Parameter Description
string Required. Specifies the string to check
charlist Optional. Specifies which characters to remove from the string. If omitted, all of the following characters are removed:
  • "\0" - NULL
  • "\t" - tab
  • "\n" - new line
  • "\x0B" - vertical tab
  • "\r" - carriage return
  • " " - ordinary white space


技术细节

返回值: 返回修改后的字符串
PHP 版本: 4+
变更日志: 这个字符列表PHP 4.1 中添加了参数

更多示例

示例

删除字符串右侧的空格:

<?php
$str = "Hello World!    ";
echo "Without rtrim: " . $str;
echo "<br>";
echo "With rtrim: " . rtrim($str);
?>

上述代码的 HTML 输出将是(查看源代码):

<!DOCTYPE html>
<html>
<body>

Without rtrim: Hello World!    <br>With rtrim: Hello World!
</body>
</html>

上述代码的浏览器输出将是:

Without rtrim: Hello World!
With rtrim: Hello World!
亲自试一试 »

示例

从字符串右侧删除换行符 (\n):

<?php
$str = "Hello World!\n\n\n";
echo "Without rtrim: " . $str;
echo "<br>";
echo "With rtrim: " . rtrim($str);
?>

上述代码的 HTML 输出将是(查看源代码):

<!DOCTYPE html>
<html>
<body>

Without rtrim: Hello World!


<br>With rtrim: Hello World!
</body>
</html>

上述代码的浏览器输出将是:

Without rtrim: Hello World!
With rtrim: Hello World!
亲自试一试 »

❮ PHP 字符串参考