PHP rtrim() 函數(shù)
PHP rtrim() 函數(shù)
實例
移除字符串右側的字符:
<?php
$str = "Hello World!";
echo $str . "<br>";
echo rtrim($str,"World!");
?>
$str = "Hello World!";
echo $str . "<br>";
echo rtrim($str,"World!");
?>
運行實例 ?
定義和用法
rtrim() 函數(shù)移除字符串右側的空白字符或其他預定義字符。
相關函數(shù):
語法
rtrim(string,charlist)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
charlist | 可選。規(guī)定從字符串中刪除哪些字符。如果省略該參數(shù),則移除下列所有字符:
|
技術細節(jié)
返回值: | 返回已修改的字符串。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.1 中,新增了 charlist 參數(shù)。 |
更多實例
實例 1
移除字符串右側的空格:
<?php
$str = "Hello World! ";
echo "Without rtrim: " . $str;
echo "<br>";
echo "With rtrim: " . rtrim($str);
?>
$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>
<html>
<body>
Without rtrim: Hello World! <br>With rtrim: Hello World!
</body>
</html>
上面代碼的瀏覽器輸出如下:
Without rtrim: Hello World!
With rtrim: Hello World!
With rtrim: Hello World!
運行實例 ?
實例 2
移除字符串右側的換行符(\n):
<?php
$str = "Hello World!nnn";
echo "Without rtrim: " . $str;
echo "<br>";
echo "With rtrim: " . rtrim($str);
?>
$str = "Hello World!nnn";
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>
<html>
<body>
Without rtrim: Hello World!
<br>With rtrim: Hello World!
</body>
</html>
上面代碼的瀏覽器輸出如下:
Without rtrim: Hello World!
With rtrim: Hello World!
With rtrim: Hello World!
運行實例 ?

相關文章
- PHP EOF(heredoc) 使用說明
- PHP 超級全局變量
- PHP For 循環(huán)
- PHP 函數(shù)
- PHP 面向對象
- PHP 包含文件 include 和 require 語句
- PHP Secure E-mails
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP current() 函數(shù)
- PHP end() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP FTP 函數(shù)
- PHP 5 MySQLi 函數(shù)