I have the following url - this url is not always the same though, but will always end the same:
$thumbnail_url = 'http://i2.ytimg.com/vi/552yWya5RgY/hqdefault.jpg'
using php I'd like to replace hqdefault.jpg
with maxresdefault.jpg
so the new thumbnail would look something like this:
$hq_thumbnail_url = 'http://i2.ytimg.com/vi/552yWya5RgY/maxresdefault.jpg'
Is this possible?