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

 

 

相关文章:

  • 2022-12-23
  • 2021-11-09
  • 2021-10-20
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-27
  • 2021-11-03
  • 2022-03-07
  • 2021-08-24
  • 2021-08-21
  • 2022-02-28
相关资源
相似解决方案