Substring in PHP

<?php
echo substr(string StrExample,int start,int length);
?>

Example #1
<?php
echo substr("Hello world!",6,5);
?>

The output of the above code will be
world