I have a string with an image link.
$image_link_raw = 'http://website.com/files/2012/10/image001.png';
Now I wanted to remove http://website.com and just get /files/2012/10/image001.png like:
$image_link_raw = '/files/2012/10/image001.png';
Is there a way to do that in PHP?
i guess we are just giving answers then ?