Source Code:
(back to article)
<?php $string = "Hello World!"; $character = "W"; $parts = explode($character, $string); $newString = array_shift($parts); echo $newString;
Result:
Report an issue