Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

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