App下载

demo_func_string_rtrim3 在线工具

demo_func_string_rtrim3 在线工具

<?php
$str = "Hello World!";
echo "Without rtrim: " . $str;
echo "<br>";
echo "With rtrim: " . rtrim($str);
?>
运行结果