php – 存储数百万图像的文件夹结构?

前端之家收集整理的这篇文章主要介绍了php – 存储数百万图像的文件夹结构?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在建立一个网站,正在查看上百万张照片上传的容易(每个图像上传3个缩略图),我需要找到最好的方法来存储所有这些图像.

Ive搜索并发现存储为哈希的图像的示例….例如…

如果我上传,coolparty.jpg,我的脚本会将其转换为Md5哈希导致..

dcehwd8y4fcf42wduasdha.jpg

并存储在/dc/eh/wd/dcehwd8y4fcf42wduasdha.jpg
但是对于3个缩略图,我不知道如何存储它们

质询..

这是存储这些图像的正确方法吗?
>我将如何存储缩略图
>在PHP中,使用上述方法存储这些图像的示例代码是什么?

感谢您抽出时间来看这个问题.

我如何使用文件夹结构:

>我正在上传照片,像你说的那样移动照片:

$image = md5_file($_FILES['image']['tmp_name']);
// you can add a random number to the file name just to make sure your images will be "unique"
$image = md5(mt_rand().$image);
$folder = $image[0]."/".$image[1]."/".$image[2]."/";

// IMAGES_PATH is a constant stored in my global config
define('IMAGES_PATH','/path/to/my/images/');
// coolparty = f3d40fc20a86e4bf8ab717a6166a02d4
$folder = IMAGES_PATH.$folder.'f3d40fc20a86e4bf8ab717a6166a02d4.jpg';
// thumbnail,I just append the t_ before image name
$folder = IMAGES_PATH.$folder.'t_f3d40fc20a86e4bf8ab717a6166a02d4.jpg';
// move_uploaded_file(),with thumbnail after process
// also make sure you create the folders in mkdir() before you move them

>我确实相信是基本的方式,当然你可以将文件夹结构更改为更深的一个,就像你说的那样,如果你有数百万张图片,可以使用2个字符.

原文链接:https://www.f2er.com/php/131795.html

猜你在找的PHP相关文章