PHP rtrim() 函数

Posted sea-stream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP rtrim() 函数相关的知识,希望对你有一定的参考价值。

 

code

<!DOCTYPE html>
<html>
<body>

<?php
$str = "Hello World!";
echo $str . "<br>";
echo rtrim($str,"World!");
?>
  
</body>
</html>

输出

Hello World!
Hello

 

参考:

https://www.w3school.com.cn/php/func_string_rtrim.asp

 

 

以上是关于PHP rtrim() 函数的主要内容,如果未能解决你的问题,请参考以下文章

rtrim() 函数

PHP常用字符串函数。

PHP字符串函数的简单应用

sqlserver中rtrim函数跟ltrim函数的用法

sql server去除字符串空格的ltrim()和rtrim()函数

oracle中trim,ltrim,rtrim函数用法