I need to remove all characters from any string before the occurrence of this inside the string:
\"www/audio\"
Not sure how I can do this.<
You can use strstr to do this.
echo strstr($str, 'www/audio');