實例
移除字串左邊的字元("Hello" 中的"He"以及"World" 中的"d!"):
<?php
$str = "Hello World!";
echo $str . "<br>";
echo trim($str,"Hed!");
?>
定義和用法
trim() 函數移除字串兩側的空白字元或其他預定義字元。
相關函數:
語法
trim(string,charlist)
#參數 |
描述 |
##string | 必要。規定要檢查的字串。 |
charlist | 可選。規定從字串中刪除哪些字元。如果省略此參數,則移除下列所有字元:
- "\0" - NULL
- "\t" - 製表符
- "\n" - 換行
- "\x0B" - 垂直製表符
- "\ r" - 回車
- " " - 空格
|
技術細節
傳回值: | 傳回已修改的字串。 |
PHP 版本: | 4+ |
更新日誌:
| 在PHP 4.1 中,新增了 charlist 參數。 |
更多实例
实例 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!
实例 2
移除字符串两侧的换行符(\n):
<?php
$str = "nnnHello World!nnn";
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
$str = "##使用函数trim去掉字符串两端特定字符####";
$str1 = trim($str,"#");
//为函数trim传入第二个参数,
trim将删除字符串$str两端的#字符 echo $str."<br>";
echo $str1;
?>
输出:
##使用PHP函数trim()去掉字符串两端特定字符#### 使用函数trim去掉字符串两端特定字符
以上是php移除字串兩側的空白字元或其他預定義字元的函數trim()的詳細內容。更多資訊請關注PHP中文網其他相關文章!