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