Hey all - just a quick question involving strings.
I have a string $string, inside of which is a string $substring. I want to remove $substring from $string. So, for example, if:
$string = 'dude where's my car?';
$substring = 'my';
i want to somehow remove the 'my' from $string to make:
$string = 'dude where's car?';