Questions
Tags
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.
This question is related to php string
php
string
You can use strstr to do this.
echo strstr($str, 'www/audio');