I'm using php 7 and trying to remove anything after extension of urls;
Example
https://website/sites/tag/filename/IMG25.jpg?iabc=gfds
to
https://website/sites/tag/filename/IMG25.jpg
or
https://website/sites/tag/filename/IMG25.png&iabc=gfds
to
https://website/sites/tag/filename/IMG25.png
or
https://website/sites/tag/filename/IMG25.jpeg&abc=gfds
to
https://website/sites/tag/filename/IMG25.jpeg
I'm trying this function
$clean_url = preg_replace(
"/(.+\.(:?jpg|gif|jp2|png|bmp|jpeg|svg)).*$/",
'',
$filename
);
But this function not working