Rumah > Soal Jawab > teks badan
redis/memcached无法将resource(资源存进缓存),那么图片属于资源吗?
有没有办法将图片存在服务器内存中,就好像普通数据那样。
(非前端expires缓存,而是要存在服务器内存缓存中)
欧阳克2016-11-14 11:36:30
set('img', $img); // show.php $img = $redis->get('img'); header('Content-Type: image/png'); // you may change image/png to image/jpeg if you pic is jpeg. header('Content-Length: ' . strlen($img)); echo $img;