Source Code:
(back to article)
<?php $string = 'Hello World'; $character = 'W'; $everything_after = strstr($string, $character); echo $everything_after; // Outputs "World"
Result:
Report an issue