Source Code:
(back to article)
<?php $string = 'Hello World'; $newString = substr($string, 6); // $newString is now 'World' echo $newString;
Result:
Report an issue