简单教程
提交运行
代码编辑器:
<?php $str = "\n\n\nHello World!"; echo "Without ltrim: " . $str; echo "<br>"; echo "With ltrim: " . ltrim($str);
运行结果: