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() 函数的主要内容,如果未能解决你的问题,请参考以下文章