PHP remove all characters before specific string

You can use strstr to do this.

echo strstr($str, 'www/audio');

Leave a Comment