上传图像时,我将原始图像路径(包含的文件名)存储在 db 中。
For example:
img/uploaded/photo.jpg
然后我生成它的缩略图并存储在下面的目录中,而不是在 db 中。
/img/uploaded/thumbs/photo_thumb.jpg
而且我有以下功能,但不知道如何获取属于 db 中 url 的拇指。
//ie: $file is img/uploaded/photo.jpg
public function get_thumb($file)
{
//get the path without filename
$get_path = dirname($file) . "/thumbs/";
//result img/uploaded/thumbs/ (how can i get the photo_thumb.jpg) here?
return $get_path;
}
编辑 basename($file) 以从路径获取文件名,但如何添加 _thumb.jpg?