目录

PHP trim() 函数

❮ PHP 字符串参考

示例

删除字符串两侧的字符("Hello" 中的 "He" 和 "World" 中的 "d!"):

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

定义和用法

Trim() 函数从字符串两侧删除空格和其他预定义字符。

相关功能:

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

语法

trim( 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 trim: " . $str;
echo "<br>";
echo "With trim: " . trim($str);
?>

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

<!DOCTYPE html>
<html>
<body>

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

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

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

示例

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

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

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

<!DOCTYPE html>
<html>
<body>

Without trim:


Hello World!


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

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

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

❮ PHP 字符串参考