例子



<?php
$str = "Hello World!";
echo $str . "<br>";
echo ltrim($str,"Hello");
?>


输出



Hello World!
World!