Source Code:
(back to article)
<?php $string = " Hello World! "; $trimmed_string = ltrim($string); echo $trimmed_string; ?>
Result:
Report an issue