Source Code:
(back to article)
<?php $str = '::f:o:'; $str = ltrim($str, ':'); var_dump($str); //=> 'f:o:' ?>
Result:
Report an issue