我的网址是这样的:
http://mydomain/filemanager/photos/shares/xxxx/image.jpg
我需要将此图片网址转换为:
http://mydomain/filemanager/photos/shares/xxxx/thumbs/image.jpg
我该怎么做?
答案 0 :(得分:0)
如果您知道文件名(即image.jpg
)是什么:
str_replace('image.jpg', 'thumbs/image.jpg', $fullPath)
找出文件名非常简单:
basename($fullPath)
将它们放在一起
$fileName = basename($fullPath);
$newFileName = 'thumbs/' . $filename;
$newPath = str_replace($filename, $newFileName, $fullPath);